X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FSpacing.h;h=2a3bb755dddade3ccf61f49bcd8df3f9428fde11;hb=21226de2b87a86be19fff025cace3d286a75aa76;hp=98f9463250fe4979d03906f0b7ac221aea6bb09e;hpb=45a03f4f67bb00f8142e465c615f348f0622eb32;p=lyx.git diff --git a/src/Spacing.h b/src/Spacing.h index 98f9463250..2a3bb755dd 100644 --- a/src/Spacing.h +++ b/src/Spacing.h @@ -5,7 +5,7 @@ * LyX, The Document Processor * * Copyright 1995 Matthias Ettrich - * Copyright 1995-2000 The LyX Team. + * Copyright 1995-2001 The LyX Team. * * ====================================================== */ @@ -37,7 +37,14 @@ public: Default }; /// - Spacing() : space(Single), 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); + } /// bool isDefault() const { return space == Default; @@ -56,11 +63,14 @@ public: string const writeEnvirBegin() const; /// string const writeEnvirEnd() const; + private: /// Space space; /// float value; + /// names of line spacing + static string const spacing_string[]; };