]> git.lyx.org Git - lyx.git/blobdiff - src/LayoutEnums.h
Account for old versions of Pygments
[lyx.git] / src / LayoutEnums.h
index c90c96850e079ff1b873b7e998cad8cee067e8d7..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)
 {
@@ -139,6 +150,16 @@ enum EndLabelType {
        END_LABEL_STATIC
 };
 
+///
+enum ArgPassThru {
+       ///
+       PT_INHERITED,
+       ///
+       PT_FALSE,
+       ///
+       PT_TRUE
+};
+
 } // namespace lyx
 
 #endif