]> git.lyx.org Git - lyx.git/blobdiff - src/LayoutEnums.h
Cmake build: Only use the new lyxconvert on MAC
[lyx.git] / src / LayoutEnums.h
index efdd5f546df2f5c141e62dfd5debe1dfa822261c..969ad1dfffef54a12da9e0129ecf2f18a8655413 100644 (file)
@@ -64,6 +64,17 @@ enum LyXAlignment {
        LYX_ALIGN_DECIMAL = 64
 };
 
+
+/// Paragraph indendation control
+enum ToggleIndentation {
+       /// Indentation can be toggled if document uses "indent" paragraph style
+       ITOGGLE_DOCUMENT_DEFAULT = 1,
+       /// Indentation cannot be toggled
+       ITOGGLE_NEVER,
+       /// Indentation can always be toggled
+       ITOGGLE_ALWAYS
+};
+
 ///
 inline void operator|=(LyXAlignment & la1, LyXAlignment la2)
 {
@@ -113,11 +124,9 @@ enum LabelType {
        ///
        LABEL_BIBLIO,
        ///
-       LABEL_TOP_ENVIRONMENT,
+       LABEL_ABOVE,
        ///
-       LABEL_CENTERED_TOP_ENVIRONMENT,
-
-       // the flushright labels following now must start with LABEL_STATIC
+       LABEL_CENTERED,
        ///
        LABEL_STATIC,
        ///
@@ -141,6 +150,16 @@ enum EndLabelType {
        END_LABEL_STATIC
 };
 
+///
+enum ArgPassThru {
+       ///
+       PT_INHERITED,
+       ///
+       PT_FALSE,
+       ///
+       PT_TRUE
+};
+
 } // namespace lyx
 
 #endif