]> git.lyx.org Git - lyx.git/blobdiff - src/lyxlayout.h
More 'standard conformant blurb' nonsense.
[lyx.git] / src / lyxlayout.h
index cd9193a4f6435df55a9552853b2a69e5738244cb..dae78e576b012abdfbb9e768dee918348af4dc23 100644 (file)
 #ifndef LYX_LAYOUT_H
 #define LYX_LAYOUT_H
 
-#ifdef __GNUG__
-#pragma interface
-#endif
-
 #include "lyxfont.h"
 #include "layout.h"
 #include "Spacing.h"
@@ -96,74 +92,58 @@ public:
 
        /// Text that dictates how wide the left margin is on the screen
        string leftmargin;
-
        /// Text that dictates how wide the right margin is on the screen
        string rightmargin;
-
        /// Text that dictates how much space to leave after a potential label
        string labelsep;
-
        /// Text that dictates how much space to leave before a potential label
        string labelindent;
-
-       /** Text that dictates the width of the indentation of
-           indented paragraphs.
-       */
+       /// Text that dictates the width of the indentation of indented pars
        string parindent;
-
        ///
        float parskip;
-
        ///
        float itemsep;
-
        ///
        float topsep;
-
        ///
        float bottomsep;
-
        ///
        float labelbottomsep;
-
        ///
        float parsep;
-
        ///
        Spacing spacing;
-
        ///
        LyXAlignment align;
-
        ///
        LyXAlignment alignpossible;
-
        ///
-       char labeltype; // add approp. type
-
+       LYX_LABEL_TYPES labeltype;
        ///
        LYX_END_LABEL_TYPES endlabeltype;
-
        ///
        LYX_MARGIN_TYPE margintype;
-
        ///
        bool fill_top;
-
        ///
        bool fill_bottom;
-
        ///
        bool newline_allowed;
-
        ///
        bool nextnoindent;
-
        ///
        bool free_spacing;
-
        ///
        bool pass_thru;
+       ///
+       bool is_environment;
+       /// for new environment insets
+       string latexheader;
+       /// for new environment insets
+       string latexfooter;
+       /// for new environment insets
+       string latexparagraph;
 
        /** true when the fragile commands in the paragraph need to be
            \protect'ed. */
@@ -181,6 +161,7 @@ public:
        ///
        bool isEnvironment() const {
                return (latextype == LATEX_ENVIRONMENT
+                       || latextype == LATEX_BIB_ENVIRONMENT
                        || latextype == LATEX_ITEM_ENVIRONMENT
                        || latextype == LATEX_LIST_ENVIRONMENT);
        }
@@ -209,19 +190,14 @@ private:
 
        /// LaTeX name for environment
        string latexname_;
-
        /// Label string. "Abstract", "Reference", "Caption"...
        string labelstring_;
-
        ///
        string endlabelstring_;
-
        /// Label string inside appendix. "Appendix", ...
        string labelstring_appendix_;
-
        /// LaTeX parameter for environment
        string latexparam_;
-
        /// Macro definitions needed for this layout
        string preamble_;
 };