]> git.lyx.org Git - lyx.git/blobdiff - src/tex2lyx/Context.h
Format and reversion code for new counter inset.
[lyx.git] / src / tex2lyx / Context.h
index b88a921f33e6c0ac8466e6912cd56c18d8bf5aa0..2d5315b5dff7dc4a1af0540bfa101e8a0dca8211 100644 (file)
@@ -128,6 +128,12 @@ public:
        std::string extra_stuff;
        /// We may need to add something after this \\begin_layout command
        std::string par_extra_stuff;
+       /// We may need to add something at the beginning of a list.
+       std::string list_extra_stuff;
+       /// Stuff between list begin and first item
+       std::string list_preamble;
+       /// A LaTeXParam to be ignored in parsing.
+       std::string latexparam;
        /// If there has been an \\begin_deeper, we'll need a matching
        /// \\end_deeper
        bool need_end_deeper;
@@ -135,6 +141,10 @@ public:
        /// for each paragraph, otherwise this has to be a deeper
        /// paragraph.
        bool has_item;
+       /// If we are in an itemize-like environment, this marks
+       /// the text before the first \item. Typically, list
+       /// parameters (such as lengths) are adjusted here.
+       bool in_list_preamble;
        /// we are handling a standard paragraph in an itemize-like
        /// environment
        bool deeper_paragraph;
@@ -161,6 +171,8 @@ public:
        TeXFont font;
        /// font attributes of normal text
        static TeXFont normalfont;
+       /// Table rotation angle
+       int tablerotation;
 
 private:
        void begin_layout(std::ostream & os, Layout const * const & l);