2006-12-29 23:54:48 +00:00
|
|
|
|
// -*- C++ -*-
|
|
|
|
|
/**
|
|
|
|
|
* \file TextMetrics.h
|
|
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
|
* Licence details can be found in the file COPYING.
|
|
|
|
|
*
|
|
|
|
|
* \author Lars Gullik Bj<EFBFBD>nnes
|
|
|
|
|
* \author John Levon
|
|
|
|
|
* \author Abdelrazak Younes
|
|
|
|
|
*
|
|
|
|
|
* Full author contact details are available in file CREDITS.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef TEXT_METRICS_H
|
|
|
|
|
#define TEXT_METRICS_H
|
|
|
|
|
|
|
|
|
|
#include "ParagraphMetrics.h"
|
|
|
|
|
|
|
|
|
|
#include "support/types.h"
|
|
|
|
|
|
|
|
|
|
#include <map>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
namespace lyx {
|
|
|
|
|
|
|
|
|
|
class BufferView;
|
2007-04-29 23:33:02 +00:00
|
|
|
|
class Text;
|
2006-12-29 23:54:48 +00:00
|
|
|
|
class MetricsInfo;
|
|
|
|
|
|
2007-04-29 23:33:02 +00:00
|
|
|
|
/// A map from a Text to the map of paragraphs metrics
|
2006-12-29 23:54:48 +00:00
|
|
|
|
class TextMetrics
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
/// Default constructor (only here for STL containers).
|
|
|
|
|
TextMetrics(): text_(0) {}
|
|
|
|
|
/// The only useful constructor.
|
2007-04-29 23:33:02 +00:00
|
|
|
|
TextMetrics(BufferView *, Text *);
|
2006-12-29 23:54:48 +00:00
|
|
|
|
///
|
|
|
|
|
ParagraphMetrics const & parMetrics(pit_type) const;
|
|
|
|
|
///
|
|
|
|
|
Dimension const & dimension() const;
|
|
|
|
|
Dimension const & dimension();
|
|
|
|
|
|
|
|
|
|
/// compute text metrics.
|
|
|
|
|
bool metrics(MetricsInfo & mi, Dimension & dim);
|
|
|
|
|
|
|
|
|
|
/// Rebreaks the given paragraph.
|
|
|
|
|
/// \retval true if a full screen redraw is needed.
|
|
|
|
|
/// \retval false if a single paragraph redraw is enough.
|
|
|
|
|
bool redoParagraph(pit_type const pit);
|
2007-06-21 06:41:55 +00:00
|
|
|
|
/// Clear cache of paragraph metrics
|
|
|
|
|
void clear() { par_metrics_.clear(); }
|
2006-12-29 23:54:48 +00:00
|
|
|
|
|
|
|
|
|
///
|
|
|
|
|
int ascent() const { return dim_.asc; }
|
|
|
|
|
///
|
|
|
|
|
int descent() const { return dim_.des; }
|
|
|
|
|
/// current text width.
|
|
|
|
|
int width() const { return dim_.wid; }
|
|
|
|
|
/// current text heigth.
|
|
|
|
|
int height() const { return dim_.height(); }
|
|
|
|
|
|
|
|
|
|
///
|
|
|
|
|
int maxWidth() const { return max_width_; }
|
2007-08-18 21:17:10 +00:00
|
|
|
|
///
|
|
|
|
|
int singleWidth(pit_type const pit, pos_type pos) const;
|
2006-12-29 23:54:48 +00:00
|
|
|
|
|
|
|
|
|
///
|
|
|
|
|
int rightMargin(ParagraphMetrics const & pm) const;
|
|
|
|
|
int rightMargin(pit_type const pit) const;
|
|
|
|
|
|
|
|
|
|
/** this calculates the specified parameters. needed when setting
|
|
|
|
|
* the cursor and when creating a visible row */
|
|
|
|
|
RowMetrics computeRowMetrics(pit_type pit, Row const & row) const;
|
|
|
|
|
|
2007-08-28 08:57:13 +00:00
|
|
|
|
///
|
2007-08-27 22:36:20 +00:00
|
|
|
|
void draw(PainterInfo & pi, int x, int y) const;
|
2007-08-28 08:57:13 +00:00
|
|
|
|
|
|
|
|
|
void drawParagraph(PainterInfo & pi, pit_type pit, int x, int y,
|
|
|
|
|
bool repaintAll) const;
|
2006-12-29 23:54:48 +00:00
|
|
|
|
|
|
|
|
|
private:
|
2007-05-28 22:27:45 +00:00
|
|
|
|
///
|
2006-12-29 23:54:48 +00:00
|
|
|
|
ParagraphMetrics & parMetrics(pit_type, bool redo_paragraph);
|
|
|
|
|
|
|
|
|
|
/// the minimum space a manual label needs on the screen in pixels
|
2007-08-18 21:17:10 +00:00
|
|
|
|
int labelFill(pit_type const pit, Row const & row) const;
|
2006-12-29 23:54:48 +00:00
|
|
|
|
|
2007-01-01 09:36:55 +00:00
|
|
|
|
/// FIXME??
|
|
|
|
|
int labelEnd(pit_type const pit) const;
|
|
|
|
|
|
|
|
|
|
/// sets row.end to the pos value *after* which a row should break.
|
|
|
|
|
/// for example, the pos after which isNewLine(pos) == true
|
|
|
|
|
void rowBreakPoint(int width, pit_type const pit, Row & row) const;
|
|
|
|
|
|
|
|
|
|
/// sets row.width to the minimum space a row needs on the screen in pixel
|
|
|
|
|
void setRowWidth(int right_margin, pit_type const pit, Row & row) const;
|
|
|
|
|
|
|
|
|
|
/// Calculate and set the height of the row
|
|
|
|
|
void setHeightOfRow(pit_type, Row & row);
|
|
|
|
|
|
2007-01-01 10:44:52 +00:00
|
|
|
|
// Temporary public:
|
|
|
|
|
public:
|
2007-01-01 10:33:37 +00:00
|
|
|
|
/// returns the column near the specified x-coordinate of the row.
|
|
|
|
|
/// x is an absolute screen coord, it is set to the real beginning
|
|
|
|
|
/// of this column.
|
|
|
|
|
pos_type getColumnNearX(pit_type pit, Row const & row, int & x,
|
|
|
|
|
bool & boundary) const;
|
2007-01-01 11:36:30 +00:00
|
|
|
|
|
|
|
|
|
/// returns pos in given par at given x coord.
|
|
|
|
|
pos_type x2pos(pit_type pit, int row, int x) const;
|
2007-05-28 22:27:45 +00:00
|
|
|
|
|
2007-01-01 11:36:30 +00:00
|
|
|
|
// FIXME: is there a need for this?
|
|
|
|
|
//int pos2x(pit_type pit, pos_type pos) const;
|
|
|
|
|
|
2007-01-01 10:44:52 +00:00
|
|
|
|
private:
|
2007-01-01 10:33:37 +00:00
|
|
|
|
|
2006-12-29 23:54:48 +00:00
|
|
|
|
/// The BufferView owner.
|
|
|
|
|
BufferView * bv_;
|
|
|
|
|
|
|
|
|
|
/// The text contents (the model).
|
|
|
|
|
/// \todo FIXME: this should be const.
|
2007-04-29 23:33:02 +00:00
|
|
|
|
Text * text_;
|
2006-12-29 23:54:48 +00:00
|
|
|
|
|
|
|
|
|
bool main_text_;
|
|
|
|
|
/// A map from paragraph index number to paragraph metrics
|
|
|
|
|
typedef std::map<pit_type, ParagraphMetrics> ParMetricsCache;
|
|
|
|
|
///
|
|
|
|
|
mutable ParMetricsCache par_metrics_;
|
|
|
|
|
Dimension dim_;
|
|
|
|
|
int max_width_;
|
2007-01-01 09:36:55 +00:00
|
|
|
|
|
|
|
|
|
/// FIXME: transfer this code in CoordCache here.
|
|
|
|
|
/*
|
|
|
|
|
/// A map from paragraph index number to screen point
|
|
|
|
|
typedef std::map<pit_type, Point> InnerParPosCache;
|
2007-04-29 23:33:02 +00:00
|
|
|
|
/// A map from a Text to the map of paragraphs to screen points
|
|
|
|
|
typedef std::map<Text const *, InnerParPosCache> ParPosCache;
|
2007-01-01 09:36:55 +00:00
|
|
|
|
/// Paragraph grouped by owning text
|
|
|
|
|
ParPosCache pars_;
|
|
|
|
|
*/
|
2006-12-29 23:54:48 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/// return the default height of a row in pixels, considering font zoom
|
|
|
|
|
int defaultRowHeight();
|
|
|
|
|
|
|
|
|
|
} // namespace lyx
|
|
|
|
|
|
|
|
|
|
#endif // TEXT_METRICS_H
|