2006-12-29 23:54:48 +00:00
|
|
|
// -*- C++ -*-
|
|
|
|
/**
|
|
|
|
* \file ParagraphMetrics.h
|
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
* Licence details can be found in the file COPYING.
|
|
|
|
*
|
|
|
|
* \author Asger Alstrup
|
2008-11-14 15:58:50 +00:00
|
|
|
* \author Lars Gullik Bjønnes
|
2006-12-29 23:54:48 +00:00
|
|
|
* \author John Levon
|
2008-11-14 15:58:50 +00:00
|
|
|
* \author André Pönitz
|
|
|
|
* \author Jürgen Vigna
|
2006-12-29 23:54:48 +00:00
|
|
|
* \author Abdelrazak Younes
|
|
|
|
*
|
|
|
|
* Full author contact details are available in file CREDITS.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef PARAGRAPH_METRICS_H
|
|
|
|
#define PARAGRAPH_METRICS_H
|
|
|
|
|
2007-08-31 14:46:13 +00:00
|
|
|
#include "Dimension.h"
|
|
|
|
#include "Row.h"
|
2006-12-29 23:54:48 +00:00
|
|
|
|
2007-09-21 20:39:47 +00:00
|
|
|
#include <map>
|
2007-09-29 20:02:32 +00:00
|
|
|
#include <vector>
|
2007-09-21 20:39:47 +00:00
|
|
|
|
2006-12-29 23:54:48 +00:00
|
|
|
namespace lyx {
|
|
|
|
|
2007-04-30 22:02:15 +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.
|
|
|
|
*/
|
|
|
|
typedef std::vector<Row> RowList;
|
|
|
|
|
2007-09-29 20:02:32 +00:00
|
|
|
class Buffer;
|
2008-02-09 17:20:23 +00:00
|
|
|
class BufferView;
|
2007-09-29 20:02:32 +00:00
|
|
|
class BufferParams;
|
|
|
|
class Font;
|
|
|
|
class Inset;
|
|
|
|
class Paragraph;
|
2006-12-29 23:54:48 +00:00
|
|
|
class MetricsInfo;
|
|
|
|
class PainterInfo;
|
|
|
|
|
2007-09-29 20:02:32 +00:00
|
|
|
/// Helper class for paragraph metrics.
|
|
|
|
class ParagraphMetrics {
|
2006-12-29 23:54:48 +00:00
|
|
|
public:
|
|
|
|
/// Default constructor (only here for STL containers).
|
2014-04-04 19:54:32 +00:00
|
|
|
ParagraphMetrics() : position_(0), par_(0) {}
|
2006-12-29 23:54:48 +00:00
|
|
|
/// The only useful constructor.
|
2007-09-29 20:02:32 +00:00
|
|
|
explicit ParagraphMetrics(Paragraph const & par);
|
2007-01-06 09:15:59 +00:00
|
|
|
|
|
|
|
/// Copy operator.
|
|
|
|
ParagraphMetrics & operator=(ParagraphMetrics const &);
|
|
|
|
|
2007-08-27 14:04:46 +00:00
|
|
|
void reset(Paragraph const & par);
|
|
|
|
|
2006-12-29 23:54:48 +00:00
|
|
|
///
|
|
|
|
Row & getRow(pos_type pos, bool boundary);
|
|
|
|
///
|
|
|
|
Row const & getRow(pos_type pos, bool boundary) const;
|
|
|
|
///
|
|
|
|
size_t pos2row(pos_type pos) const;
|
|
|
|
|
|
|
|
/// BufferView::redoParagraph updates this
|
|
|
|
Dimension const & dim() const { return dim_; }
|
|
|
|
Dimension & dim() { return dim_; }
|
|
|
|
/// total height of paragraph
|
2007-09-01 14:00:03 +00:00
|
|
|
int height() const { return dim_.height(); }
|
2006-12-29 23:54:48 +00:00
|
|
|
/// total width of paragraph, may differ from workwidth
|
2007-09-01 14:00:03 +00:00
|
|
|
int width() const { return dim_.width(); }
|
2006-12-29 23:54:48 +00:00
|
|
|
/// ascend of paragraph above baseline
|
2007-09-01 14:00:03 +00:00
|
|
|
int ascent() const { return dim_.ascent(); }
|
2006-12-29 23:54:48 +00:00
|
|
|
/// descend of paragraph below baseline
|
2007-09-01 14:00:03 +00:00
|
|
|
int descent() const { return dim_.descent(); }
|
2007-04-29 23:33:02 +00:00
|
|
|
/// Text updates the rows using this access point
|
2006-12-29 23:54:48 +00:00
|
|
|
RowList & rows() { return rows_; }
|
|
|
|
/// The painter and others use this
|
|
|
|
RowList const & rows() const { return rows_; }
|
|
|
|
///
|
2008-02-09 17:20:23 +00:00
|
|
|
int rightMargin(BufferView const & bv) const;
|
2006-12-29 23:54:48 +00:00
|
|
|
|
|
|
|
/// dump some information to lyxerr
|
|
|
|
void dump() const;
|
2007-08-31 14:46:13 +00:00
|
|
|
|
|
|
|
///
|
|
|
|
bool hfillExpansion(Row const & row, pos_type pos) const;
|
|
|
|
|
2016-06-03 09:21:09 +00:00
|
|
|
///
|
|
|
|
size_t computeRowSignature(Row const &, BufferView const & bv) const;
|
2006-12-29 23:54:48 +00:00
|
|
|
|
2007-09-11 16:04:10 +00:00
|
|
|
///
|
|
|
|
int position() const { return position_; }
|
|
|
|
void setPosition(int position);
|
|
|
|
|
2006-12-29 23:54:48 +00:00
|
|
|
private:
|
2007-09-11 16:04:10 +00:00
|
|
|
///
|
|
|
|
int position_;
|
2006-12-29 23:54:48 +00:00
|
|
|
///
|
|
|
|
mutable RowList rows_;
|
|
|
|
/// cached dimensions of paragraph
|
|
|
|
Dimension dim_;
|
|
|
|
///
|
|
|
|
Paragraph const * par_;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace lyx
|
|
|
|
|
|
|
|
#endif // PARAGRAPH_METRICS_H
|