]> git.lyx.org Git - lyx.git/blobdiff - src/ParagraphParameters.h
Fulfill promise to Andre: TextClass_ptr --> TextClassPtr.
[lyx.git] / src / ParagraphParameters.h
index cbbc2759a4e879870369a9051dc0ce0dc909df48..cbea00691b81f59a4272dcc883c8ebfaaea5c080 100644 (file)
@@ -14,7 +14,7 @@
 #ifndef PARAGRAPHPARAMETERS_H
 #define PARAGRAPHPARAMETERS_H
 
-#include "layout.h"
+#include "Layout.h"
 #include "Length.h"
 #include "Spacing.h"
 
@@ -80,8 +80,17 @@ public:
        ///
        void leftIndent(Length const &);
 
+       /// read the parameters from a string
+       void read (std::string str, bool merge = true);
+       
        /// read the parameters from a lex
-       void read(Lexer & lex);
+       void read(Lexer & lex, bool merge = true);
+       
+       /// 
+       void apply(ParagraphParameters const & params, Layout const & layout);
+       
+       ///
+       bool canApply(ParagraphParameters const & params, Layout const & layout);
 
        /// write out the parameters to a stream
        void write(std::ostream & os) const;