X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FSpacing.h;h=274cfc20f220ef5682da932170af294f750ecc1d;hb=dfe3a7d9fc57911b920eb3bc5f7fe7d4b7397823;hp=165f5b7b25535bf3aab1ada66857caf1f7395c15;hpb=99d1627a471b92f403598d03dfc861ddc3c11be0;p=lyx.git diff --git a/src/Spacing.h b/src/Spacing.h index 165f5b7b25..274cfc20f2 100644 --- a/src/Spacing.h +++ b/src/Spacing.h @@ -1,20 +1,22 @@ // -*- C++ -*- -/* This file is part of - * ====================================================== +/** + * \file src/Spacing.h + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * - * LyX, The Document Processor + * \author Lars Gullik Bjønnes * - * Copyright 1995 Matthias Ettrich - * Copyright 1995-2001 The LyX Team. - * - * ====================================================== */ + * Full author contact details are available in file CREDITS. + */ #ifndef SPACING_H #define SPACING_H -#include +#include "support/strfwd.h" + +#include -#include "LString.h" +namespace lyx { /// class Spacing { @@ -33,40 +35,42 @@ public: Default }; /// - Spacing() : space(Default), value(1.0) {} + Spacing() : space(Default), value("1.0") {} /// - Spacing(Spacing::Space sp, float val = 1.0) { - set(sp, val); - } - Spacing(Spacing::Space sp, string const & val) { - set(sp, val); - } + Spacing(Spacing::Space sp, double val = 1.0) { set(sp, val); } /// - bool isDefault() const { - return space == Default; - } + Spacing(Spacing::Space sp, std::string const & val) { set(sp, val); } /// - float getValue() const; + bool isDefault() const { return space == Default; } /// - Spacing::Space getSpace() const { return space; } + std::string const getValueAsString() const; /// - void set(Spacing::Space sp, float val = 1.0); + double getValue() const; /// - void set(Spacing::Space sp, string const & val) ; + Spacing::Space getSpace() const { return space; } /// - void writeFile(std::ostream &, bool para = false) const; + void set(Spacing::Space sp, double val = 1.0); /// - string const writeEnvirBegin() const; + void set(Spacing::Space sp, std::string const & val); /// - string const writeEnvirEnd() const; + 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 string const spacing_string[]; + static std::string const spacing_string[]; }; @@ -75,7 +79,7 @@ inline bool operator==(Spacing const & a, Spacing const & b) { return a.getSpace() == b.getSpace() - && a.getValue() == b.getValue(); + && a.getValueAsString() == b.getValueAsString(); } /// @@ -84,4 +88,7 @@ bool operator!=(Spacing const & a, Spacing const & b) { return !(a == b); } -#endif + +} // namespace lyx + +#endif // SPACING_H