2001-12-02 23:47:06 +00:00
|
|
|
// -*- C++ -*-
|
2002-02-26 10:50:48 +00:00
|
|
|
/**
|
2007-04-28 12:58:49 +00:00
|
|
|
* \file Length.h
|
2003-08-23 00:17:00 +00:00
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
* Licence details can be found in the file COPYING.
|
2001-12-02 23:47:06 +00:00
|
|
|
*
|
2002-02-26 10:50:48 +00:00
|
|
|
* \author Matthias Ettrich
|
2008-11-14 15:58:50 +00:00
|
|
|
* \author Lars Gullik Bjønnes
|
2003-08-23 00:17:00 +00:00
|
|
|
* \author Jean-Marc Lasgouttes
|
|
|
|
* \author John Levon
|
|
|
|
*
|
|
|
|
* Full author contact details are available in file CREDITS.
|
2002-02-26 10:50:48 +00:00
|
|
|
*/
|
|
|
|
|
2007-10-24 22:55:02 +00:00
|
|
|
#ifndef LENGTH_H
|
|
|
|
#define LENGTH_H
|
2001-12-02 23:47:06 +00:00
|
|
|
|
2007-10-31 22:40:34 +00:00
|
|
|
#include "support/strfwd.h"
|
2001-12-02 23:47:06 +00:00
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
|
|
|
|
namespace lyx {
|
|
|
|
|
2015-03-26 15:55:19 +00:00
|
|
|
class MetricsBase;
|
|
|
|
|
2005-11-03 10:49:32 +00:00
|
|
|
// Solaris/x86 version 9 and earlier define these
|
2006-10-21 00:16:43 +00:00
|
|
|
#undef PC
|
|
|
|
#undef SP
|
2005-11-03 10:49:32 +00:00
|
|
|
|
2007-04-28 12:58:49 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// Length
|
|
|
|
//
|
|
|
|
/////////////////////////////////////////////////////////////////////
|
|
|
|
|
2005-11-03 10:49:32 +00:00
|
|
|
|
2002-02-26 10:50:48 +00:00
|
|
|
/**
|
2007-04-28 12:58:49 +00:00
|
|
|
* Length - Represents latex length measurement
|
2002-02-26 10:50:48 +00:00
|
|
|
*/
|
2007-04-28 12:58:49 +00:00
|
|
|
class Length {
|
2001-12-02 23:47:06 +00:00
|
|
|
public:
|
|
|
|
/// length units
|
|
|
|
enum UNIT {
|
2002-02-26 10:50:48 +00:00
|
|
|
BP, ///< Big point (72bp = 1in), also PostScript point
|
|
|
|
CC, ///< Cicero = 12dd = 4.531mm
|
|
|
|
CM, ///< Centimeter = 10mm = 2.371pc
|
2009-07-14 22:38:47 +00:00
|
|
|
DD, ///< Didot point = 1/72 of a French inch, = 0.376mm
|
2002-02-26 10:50:48 +00:00
|
|
|
EM, ///< Width of capital "M" in current font.
|
2009-07-14 22:38:47 +00:00
|
|
|
EX, ///< Height of a small "x" for the current font.
|
|
|
|
IN, ///< Inch = 25.4mm = 72.27pt = 6.022pc
|
|
|
|
MM, ///< Millimeter = 2.845pt
|
2002-02-26 10:50:48 +00:00
|
|
|
MU, ///< Math unit (18mu = 1em) for positioning in math mode
|
2009-07-14 22:38:47 +00:00
|
|
|
PC, ///< Pica = 12pt = 4.218mm
|
|
|
|
PT, ///< Point = 1/72.27in = 0.351mm
|
|
|
|
SP, ///< Scaled point (65536sp = 1pt) TeX's smallest unit.
|
2009-07-17 00:59:41 +00:00
|
|
|
PTW, //< Percent of TextWidth
|
2002-08-24 22:02:30 +00:00
|
|
|
PCW, //< Percent of ColumnWidth
|
2009-07-14 22:38:47 +00:00
|
|
|
PPW, //< Percent of PageWidth
|
2009-07-17 00:59:41 +00:00
|
|
|
PLW, //< Percent of LineWidth
|
|
|
|
PTH, //< Percent of TextHeight // Herbert 2002-05-16
|
|
|
|
PPH, //< Percent of PaperHeight // Herbert 2002-05-16
|
2002-02-26 10:50:48 +00:00
|
|
|
UNIT_NONE ///< no unit
|
2001-12-02 23:47:06 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
///
|
2007-04-28 12:58:49 +00:00
|
|
|
Length();
|
2001-12-02 23:47:06 +00:00
|
|
|
///
|
2007-04-28 12:58:49 +00:00
|
|
|
Length(double v, Length::UNIT u);
|
2001-12-02 23:47:06 +00:00
|
|
|
|
|
|
|
/// "data" must be a decimal number, followed by a unit
|
2007-04-28 12:58:49 +00:00
|
|
|
explicit Length(std::string const & data);
|
2001-12-05 08:04:20 +00:00
|
|
|
|
2001-12-02 23:47:06 +00:00
|
|
|
///
|
|
|
|
double value() const;
|
|
|
|
///
|
2007-04-28 12:58:49 +00:00
|
|
|
Length::UNIT unit() const;
|
2001-12-02 23:47:06 +00:00
|
|
|
///
|
|
|
|
void value(double);
|
|
|
|
///
|
2007-04-28 12:58:49 +00:00
|
|
|
void unit(Length::UNIT unit);
|
2001-12-05 08:04:20 +00:00
|
|
|
///
|
|
|
|
bool zero() const;
|
2002-12-04 02:57:14 +00:00
|
|
|
///
|
|
|
|
bool empty() const;
|
2002-02-26 10:50:48 +00:00
|
|
|
/// return string representation
|
2003-10-06 15:43:21 +00:00
|
|
|
std::string const asString() const;
|
2006-10-21 19:40:29 +00:00
|
|
|
/// return string representation
|
|
|
|
docstring const asDocstring() const;
|
2002-02-26 10:50:48 +00:00
|
|
|
/// return string representation for LaTeX
|
2003-10-06 15:43:21 +00:00
|
|
|
std::string const asLatexString() const;
|
2009-06-12 14:42:33 +00:00
|
|
|
/// return string representation for HTML
|
|
|
|
std::string const asHTMLString() const;
|
2015-03-26 15:55:19 +00:00
|
|
|
/** return the on-screen size of this length.
|
|
|
|
*
|
|
|
|
* If the second argument is not provided, then the unit EM will
|
|
|
|
* only be approximated. It is better if possible to use
|
|
|
|
* FontMetrics::em() to get this value.
|
|
|
|
*/
|
2002-10-24 18:31:47 +00:00
|
|
|
int inPixels(int text_width, int em_width = 0) const;
|
2015-03-26 15:55:19 +00:00
|
|
|
/** return the on-screen size of this length
|
|
|
|
*
|
|
|
|
* This version of the function uses the right EM definition.
|
|
|
|
*/
|
|
|
|
int inPixels(MetricsBase const &) const;
|
2008-09-18 13:59:35 +00:00
|
|
|
/// return the value in Big Postscript points.
|
2015-07-12 16:36:19 +00:00
|
|
|
/// Caution: Inaccurate for em, ex, mu and percent units.
|
2002-04-11 18:36:18 +00:00
|
|
|
int inBP() const;
|
2001-12-02 23:47:06 +00:00
|
|
|
|
2009-02-06 21:24:13 +00:00
|
|
|
/// return the default unit (centimeter or inch)
|
|
|
|
static UNIT defaultUnit();
|
|
|
|
|
2007-04-28 12:58:49 +00:00
|
|
|
friend bool isValidLength(std::string const & data, Length * result);
|
2001-12-02 23:47:06 +00:00
|
|
|
|
|
|
|
private:
|
2015-07-12 16:36:19 +00:00
|
|
|
/// Convert value to inch for text width and em width given in inch
|
|
|
|
double inInch(double text_width, double em_width) const;
|
2001-12-02 23:47:06 +00:00
|
|
|
///
|
2007-10-31 22:40:34 +00:00
|
|
|
double val_;
|
2001-12-02 23:47:06 +00:00
|
|
|
///
|
2007-04-28 12:58:49 +00:00
|
|
|
Length::UNIT unit_;
|
2001-12-02 23:47:06 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
///
|
2007-04-28 12:58:49 +00:00
|
|
|
bool operator==(Length const & l1, Length const & l2);
|
2001-12-02 23:47:06 +00:00
|
|
|
///
|
2007-04-28 12:58:49 +00:00
|
|
|
bool operator!=(Length const & l1, Length const & l2);
|
2006-05-12 19:06:19 +00:00
|
|
|
/** Test whether \p data represents a valid length.
|
2007-05-28 22:27:45 +00:00
|
|
|
*
|
2006-05-12 19:06:19 +00:00
|
|
|
* \returns whether \p data is a valid length
|
|
|
|
* \param data Length in LyX format. Since the only difference between LyX
|
|
|
|
* and LaTeX format is the representation of length variables as units (e.g.
|
|
|
|
* \c text% vs. \c \\textwidth) you can actually use this function as well
|
|
|
|
* for testing LaTeX lengths as long as they only contain real units like pt.
|
2007-04-28 12:58:49 +00:00
|
|
|
* \param result Pointer to a Length variable. If \p result is not 0 and
|
2006-05-12 19:06:19 +00:00
|
|
|
* \p data is valid, the length represented by it is stored into \p result.
|
|
|
|
*/
|
2007-04-28 12:58:49 +00:00
|
|
|
bool isValidLength(std::string const & data, Length * result = 0);
|
2006-05-12 19:06:19 +00:00
|
|
|
/// return the LyX name of the given unit number
|
2001-12-02 23:47:06 +00:00
|
|
|
char const * stringFromUnit(int unit);
|
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
|
2007-04-28 12:58:49 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// GlueLength
|
|
|
|
//
|
|
|
|
/////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
class GlueLength {
|
|
|
|
public:
|
|
|
|
///
|
|
|
|
GlueLength() {}
|
|
|
|
///
|
|
|
|
explicit GlueLength(Length const & len);
|
|
|
|
///
|
|
|
|
GlueLength(Length const & len,
|
|
|
|
Length const & plus,
|
|
|
|
Length const & minus);
|
|
|
|
|
|
|
|
/** "data" must be a decimal number, followed by a unit, and
|
|
|
|
optional "glue" indicated by "+" and "-". You may abbreviate
|
|
|
|
reasonably. Examples:
|
|
|
|
1.2 cm // 4mm +2pt // 2cm -4mm +2mm // 4+0.1-0.2cm
|
|
|
|
The traditional Latex format is also accepted, like
|
|
|
|
4cm plus 10pt minus 10pt */
|
|
|
|
explicit GlueLength(std::string const & data);
|
|
|
|
|
|
|
|
///
|
|
|
|
Length const & len() const;
|
|
|
|
///
|
|
|
|
Length const & plus() const;
|
|
|
|
///
|
|
|
|
Length const & minus() const;
|
|
|
|
|
|
|
|
|
|
|
|
/// conversion
|
|
|
|
std::string const asString() const;
|
|
|
|
///
|
|
|
|
std::string const asLatexString() const;
|
|
|
|
|
|
|
|
friend bool isValidGlueLength(std::string const & data,
|
|
|
|
GlueLength* result);
|
|
|
|
|
|
|
|
private:
|
|
|
|
/// the normal vlaue
|
|
|
|
Length len_;
|
|
|
|
/// extra stretch
|
|
|
|
Length plus_;
|
|
|
|
/// extra shrink
|
|
|
|
Length minus_;
|
|
|
|
};
|
|
|
|
|
|
|
|
///
|
|
|
|
bool operator==(GlueLength const & l1, GlueLength const & l2);
|
|
|
|
///
|
|
|
|
bool operator!=(GlueLength const & l1, GlueLength const & l2);
|
|
|
|
/** If "data" is valid, the length represented by it is
|
|
|
|
stored into "result", if that is not 0. */
|
|
|
|
bool isValidGlueLength(std::string const & data, GlueLength * result = 0);
|
|
|
|
|
2007-10-24 22:55:02 +00:00
|
|
|
/// the number of units possible
|
|
|
|
extern int const num_units;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* array of unit names
|
|
|
|
*
|
|
|
|
* FIXME: I am not sure if "mu" should be possible to select (Lgb)
|
|
|
|
*/
|
|
|
|
extern char const * const unit_name[];
|
|
|
|
extern char const * const unit_name_gui[];
|
|
|
|
|
|
|
|
/// return the unit given a string representation such as "cm"
|
|
|
|
Length::UNIT unitFromString(std::string const & data);
|
|
|
|
|
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
} // namespace lyx
|
|
|
|
|
2007-10-24 22:55:02 +00:00
|
|
|
#endif // LENGTH_H
|