]> git.lyx.org Git - lyx.git/blobdiff - src/Spacing.h
Avoid full metrics computation with Update:FitCursor
[lyx.git] / src / Spacing.h
index ba8e530628d3d8632e98f5d6ce30ebac684c9007..7311f792b5a3b5ae7ec98e90430db607a30ac52c 100644 (file)
@@ -1,24 +1,22 @@
 // -*- 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
 
-#ifdef __GNUG__
-#pragma interface
-#endif
+#include "support/strfwd.h"
 
-#include <iosfwd>
+#include <string>
 
-#include "LString.h"
+namespace lyx {
 
 ///
 class Spacing {
@@ -37,37 +35,45 @@ 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);
-       }
+       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 writeCmd(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[];
 };
 
 
@@ -76,7 +82,7 @@ inline
 bool operator==(Spacing const & a, Spacing const & b)
 {
        return a.getSpace() == b.getSpace()
-               && a.getValue() == b.getValue();
+               && a.getValueAsString() == b.getValueAsString();
 }
 
 ///
@@ -85,4 +91,7 @@ bool operator!=(Spacing const & a, Spacing const & b)
 {
        return !(a == b);
 }
-#endif
+
+} // namespace lyx
+
+#endif // SPACING_H