X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FLayoutEnums.h;h=969ad1dfffef54a12da9e0129ecf2f18a8655413;hb=38c2cde0d8695ac5287bae218c4a33a2acf18ef8;hp=c90c96850e079ff1b873b7e998cad8cee067e8d7;hpb=32b0e8cbdbb8f3b970243961d8a57ed4a9fde2e3;p=lyx.git diff --git a/src/LayoutEnums.h b/src/LayoutEnums.h index c90c96850e..969ad1dfff 100644 --- a/src/LayoutEnums.h +++ b/src/LayoutEnums.h @@ -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