mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
127 lines
2.3 KiB
C++
127 lines
2.3 KiB
C++
|
/* This file is part of
|
||
|
* ======================================================
|
||
|
*
|
||
|
* LyX, The Document Processor
|
||
|
*
|
||
|
* Copyright 1995 Matthias Ettrich
|
||
|
* Copyright 1995-2001 The LyX Team.
|
||
|
*
|
||
|
* ====================================================== */
|
||
|
|
||
|
#include <config.h>
|
||
|
|
||
|
#ifdef __GNUG__
|
||
|
#pragma implementation
|
||
|
#endif
|
||
|
|
||
|
#include "lyxlength.h"
|
||
|
|
||
|
#include "Lsstream.h"
|
||
|
|
||
|
namespace {
|
||
|
// this is now here and in lyxgluelength.C
|
||
|
|
||
|
int const num_units = LyXLength::UNIT_NONE;
|
||
|
|
||
|
// I am not sure if "mu" should be possible to select (Lgb)
|
||
|
char const * unit_name[num_units] = { "sp", "pt", "bp", "dd",
|
||
|
"mm", "pc", "cc", "cm",
|
||
|
"in", "ex", "em", "mu",
|
||
|
"%", "c%", "p%", "l%" };
|
||
|
|
||
|
|
||
|
LyXLength::UNIT unitFromString(string const & data)
|
||
|
{
|
||
|
int i = 0;
|
||
|
while (i < num_units && data != unit_name[i])
|
||
|
++i;
|
||
|
return static_cast<LyXLength::UNIT>(i);
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
|
||
|
LyXLength::LyXLength()
|
||
|
: val_(0), unit_(LyXLength::PT)
|
||
|
{}
|
||
|
|
||
|
|
||
|
LyXLength::LyXLength(double v, LyXLength::UNIT u)
|
||
|
: val_(v), unit_(u)
|
||
|
{}
|
||
|
|
||
|
|
||
|
LyXLength::LyXLength(string const & data)
|
||
|
{
|
||
|
LyXLength tmp;
|
||
|
|
||
|
if (!isValidLength (data, &tmp))
|
||
|
return; // should raise an exception
|
||
|
|
||
|
val_ = tmp.val_;
|
||
|
unit_ = tmp.unit_;
|
||
|
}
|
||
|
|
||
|
|
||
|
string const LyXLength::asString() const
|
||
|
{
|
||
|
ostringstream buffer;
|
||
|
buffer << val_ << unit_name[unit_]; // setw?
|
||
|
return buffer.str().c_str();
|
||
|
}
|
||
|
|
||
|
|
||
|
string const LyXLength::asLatexString() const
|
||
|
{
|
||
|
ostringstream buffer;
|
||
|
switch(unit_) {
|
||
|
case PW:
|
||
|
case PE:
|
||
|
buffer << abs(static_cast<int>(val_/100)) << "."
|
||
|
<< abs(static_cast<int>(val_)%100) << "\\columnwidth";
|
||
|
break;
|
||
|
case PP:
|
||
|
buffer << abs(static_cast<int>(val_/100)) << "."
|
||
|
<< abs(static_cast<int>(val_)%100) << "\\pagewidth";
|
||
|
break;
|
||
|
case PL:
|
||
|
buffer << abs(static_cast<int>(val_/100)) << "."
|
||
|
<< abs(static_cast<int>(val_)%100) << "\\linewidth";
|
||
|
break;
|
||
|
default:
|
||
|
buffer << val_ << unit_name[unit_]; // setw?
|
||
|
break;
|
||
|
}
|
||
|
return buffer.str().c_str();
|
||
|
}
|
||
|
|
||
|
|
||
|
double LyXLength::value() const
|
||
|
{
|
||
|
return val_;
|
||
|
}
|
||
|
|
||
|
|
||
|
LyXLength::UNIT LyXLength::unit() const
|
||
|
{
|
||
|
return unit_;
|
||
|
}
|
||
|
|
||
|
|
||
|
void LyXLength::value(double v)
|
||
|
{
|
||
|
val_ = v;
|
||
|
}
|
||
|
|
||
|
|
||
|
void LyXLength::unit(LyXLength::UNIT u)
|
||
|
{
|
||
|
unit_ = u;
|
||
|
}
|
||
|
|
||
|
|
||
|
bool operator==(LyXLength const & l1, LyXLength const & l2)
|
||
|
{
|
||
|
return l1.value() == l2.value() && l1.unit() == l2.unit();
|
||
|
}
|