2003-09-06 11:01:50 +00:00
|
|
|
// -*- C++ -*-
|
|
|
|
/**
|
|
|
|
* \file RowList_fwd.h
|
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
* Licence details can be found in the file COPYING.
|
|
|
|
*
|
|
|
|
* \author Angus Leeming
|
|
|
|
*
|
|
|
|
* Full author contact details are available in file CREDITS.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef ROW_LIST_FWD_H
|
|
|
|
#define ROW_LIST_FWD_H
|
|
|
|
|
2004-11-16 20:41:38 +00:00
|
|
|
#include "lyxrow.h"
|
2003-09-06 11:01:50 +00:00
|
|
|
|
2004-11-16 20:41:38 +00:00
|
|
|
#include <vector>
|
2005-12-30 19:02:52 +00:00
|
|
|
#include <map>
|
2003-09-06 11:01:50 +00:00
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
|
|
|
|
namespace lyx {
|
|
|
|
|
2005-01-31 16:29:48 +00:00
|
|
|
/**
|
|
|
|
* Each paragraph is broken up into a number of rows on the screen.
|
|
|
|
* This is a list of such on-screen rows, ordered from the top row
|
|
|
|
* downwards.
|
|
|
|
*/
|
2003-10-24 08:33:52 +00:00
|
|
|
typedef std::vector<Row> RowList;
|
2005-12-30 19:02:52 +00:00
|
|
|
///
|
2007-01-06 09:15:59 +00:00
|
|
|
typedef std::vector<size_type> RowSignature;
|
2006-10-21 00:16:43 +00:00
|
|
|
|
|
|
|
|
|
|
|
} // namespace lyx
|
2003-09-06 11:01:50 +00:00
|
|
|
|
|
|
|
#endif
|