]> git.lyx.org Git - lyx.git/blobdiff - src/ParagraphParameters.h
Add GraphicsTypes.h to libgraphics_la_SOURCES
[lyx.git] / src / ParagraphParameters.h
index 82f8ddc0a714794e61673cd76a6b2e35f8587bbc..71a4af09d2379cb75a0b02fd82c5721b678f1420 100644 (file)
@@ -3,18 +3,23 @@
 #ifndef PARAGRAPHPARAMETERS_H
 #define PARAGRAPHPARAMETERS_H
 
+#ifdef __GNUG__
+#pragma interface
+#endif
+
 #include "ShareContainer.h"
 #include "LString.h"
 #include "layout.h"
+
+// Not yet... lyx 1.3.x or so
+//#define NO_PEXTRA_REALLY 1
+
 #include "ParameterStruct.h"
 
 class VSpace;
 class Spacing;
 
 
-// Not yet... lyx 1.3.x or so
-//#define NO_PEXTRA_REALLY 1
-
 ///
 class ParagraphParameters {
 public:
@@ -25,8 +30,6 @@ public:
        ///
        bool sameLayout(ParagraphParameters const &) const;
        ///
-       void makeSame(ParagraphParameters const & pp);
-       ///
        VSpace const & spaceTop() const;
        ///
        void spaceTop(VSpace const &);
@@ -63,9 +66,11 @@ public:
        ///
        void align(LyXAlignment);
        ///
-       char depth() const;
+       typedef ParameterStruct::depth_type depth_type;
+       ///
+       depth_type depth() const;
        ///
-       void depth(char);
+       void depth(depth_type);
        ///
        bool startOfAppendix() const;
        ///
@@ -119,7 +124,7 @@ private:
 
 
 inline
-char ParagraphParameters::depth() const
+ParagraphParameters::depth_type ParagraphParameters::depth() const
 {
        return param->depth;
 }