X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FSpacing.h;h=a78abb6c5a07668b416ac0840753c30d5f679ae2;hb=5e0121cf5854a2a0039e6cb4970aeddb18bd4b23;hp=094d7d3d1c9fd14cb2241632c2c7fce2daa7bff9;hpb=fe4e2a84c664ab13a2cfbfcbdb953d72c77eb268;p=lyx.git diff --git a/src/Spacing.h b/src/Spacing.h index 094d7d3d1c..a78abb6c5a 100644 --- a/src/Spacing.h +++ b/src/Spacing.h @@ -1,18 +1,26 @@ // -*- C++ -*- -/* This file is part of - * ====================================================== - * - * LyX, The Document Processor - * - * Copyright 1995 Matthias Ettrich - * Copyright 1995-2000 The LyX Team. +/** + * \file src/Spacing.h + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * - * ====================================================== */ + * \author Lars Gullik Bjønnes + * + * Full author contact details are available in file CREDITS. + */ #ifndef SPACING_H #define SPACING_H -#include +#ifdef TEX2LYX +#include "tex2lyx/Spacing.h" +#else + +#include "support/strfwd.h" + +#include + +namespace lyx { /// class Spacing { @@ -31,37 +39,61 @@ public: Default }; /// - Spacing() : space(Single), value(1.0) {} + Spacing() : space(Default), value("1.0") {} /// - bool isDefault() const { - return space == Default; - } + Spacing(Spacing::Space sp, double val = 1.0) { set(sp, val); } /// - float getValue() const; + Spacing(Spacing::Space sp, std::string const & val) { set(sp, val); } /// - Spacing::Space getSpace() const { return space; } + bool isDefault() const { return space == Default; } /// - void set(Spacing::Space sp, float val = 1.0); + std::string const getValueAsString() const; /// - void set(Spacing::Space sp, char const * val) ; + double getValue() const; /// - void writeFile(std::ostream &, bool para = false) const; + Spacing::Space getSpace() const { return space; } /// - friend bool operator==(Spacing const & a, Spacing const & b) { - if (a.space == b.space && a.getValue() == b.getValue()) - return true; - return false; - } + void set(Spacing::Space sp, double val = 1.0); /// - friend bool operator!=(Spacing const & a, Spacing const & b) { - if (a.space == b.space && a.getValue() == b.getValue()) - return false; - return true; - } + void set(Spacing::Space sp, std::string const & val); + /// + void writeFile(std::ostream &, bool para = false) const; + /// useSetSpace is true when using the variant supported by + /// the memoir class. + std::string const writeEnvirBegin(bool useSetSpace) const; + /// useSetSpace is true when using the variant supported by + /// the memoir class. + std::string const writeEnvirEnd(bool useSetSpace) const; + /// useSetSpace is true when using the variant supported by + /// the memoir class. + std::string const writePreamble(bool useSetSpace) const; + private: /// Space space; /// - float value; + std::string value; + /// names of line spacing + static std::string const spacing_string[]; }; -#endif + + +/// +inline +bool operator==(Spacing const & a, Spacing const & b) +{ + return a.getSpace() == b.getSpace() + && a.getValueAsString() == b.getValueAsString(); +} + +/// +inline +bool operator!=(Spacing const & a, Spacing const & b) +{ + return !(a == b); +} + +} // namespace lyx + +#endif // TEX2LYX +#endif // SPACING_H