]> git.lyx.org Git - lyx.git/blobdiff - src/lyxparagraph.h
more NEW_INSETS changes, define NEW_MANUBAR as default some other changes, read ChangeLog
[lyx.git] / src / lyxparagraph.h
index d7054fdc1692bae44db7ee053ab6a04c38ba82be..dcccb3cd75cfe95bb681f7c517e0eda1898238a9 100644 (file)
@@ -31,6 +31,15 @@ class LyXBuffer;
 class TexRow;
 struct LaTeXFeatures;
 class InsetBibKey;
+class BufferView;
+
+// I dare you to enable this and help me find all the bugs that then show
+// up. (Lgb)
+//#define NEW_INSETS 1
+
+// I dare you to try this one too. It is ortogonal with NEW_INSETS so you
+// can try both or just one of them.
+//#define NEW_TABULAR 1
 
 /// A LyXParagraph holds all text, attributes and insets in a text paragraph
 class LyXParagraph  {
@@ -57,6 +66,7 @@ public:
        };
        ///
        enum META_KIND {
+#ifndef NEW_INSETS
                ///
                META_FOOTNOTE = 1,
                ///
@@ -73,6 +83,10 @@ public:
                META_WIDE_TAB,
                ///
                META_HFILL,
+#else
+               ///
+               META_HFILL = 1,
+#endif
                ///
                META_NEWLINE,
                ///
@@ -80,6 +94,7 @@ public:
                ///
                META_INSET
        };
+#ifndef NEW_INSETS
 
        /// The footnoteflag
        enum footnote_flag {
@@ -108,7 +123,7 @@ public:
                ///
                WIDE_TAB    // CFO-G, 971106
        };
-       
+#endif
        ///
        typedef char value_type;
        ///
@@ -125,20 +140,23 @@ public:
        ~LyXParagraph();
 
        ///
-       Language const * getParLanguage() const;
+       Language const * getParLanguage(BufferParams const &) const;
        ///
-       bool isRightToLeftPar() const;
+       bool isRightToLeftPar(BufferParams const &) const;
        ///
-       void ChangeLanguage(Language const * from, Language const * to);
+       void ChangeLanguage(BufferParams const & bparams,
+                           Language const * from, Language const * to);
        ///
-       bool isMultiLingual();
+       bool isMultiLingual(BufferParams const &);
        ///
-       string String(bool label);
+
+       string String(Buffer const *, bool label);
        ///
-       string String(size_type beg, size_type end);
+       string String(Buffer const *, size_type beg, size_type end);
        
        ///
-       void writeFile(std::ostream &, BufferParams const &, char, char) const;
+       void writeFile(Buffer const *, std::ostream &, BufferParams const &,
+                      char, char) const;
        ///
        void validate(LaTeXFeatures &) const;
        
@@ -155,17 +173,27 @@ public:
        void read();
 
        ///
-       LyXParagraph * TeXOnePar(std::ostream &, TexRow & texrow,
-                                bool moving_arg,
+       LyXParagraph * TeXOnePar(Buffer const *, BufferParams const &,
+                                std::ostream &, TexRow & texrow,
+                                bool moving_arg
+#ifndef NEW_INSETS
+                                ,
                                 std::ostream & foot, TexRow & foot_texrow,
-                                int & foot_count);
+                                int & foot_count
+#endif
+               );
        ///
-       bool SimpleTeXOnePar(std::ostream &, TexRow & texrow, bool moving_arg);
+       bool SimpleTeXOnePar(Buffer const *, BufferParams const &,
+                            std::ostream &, TexRow & texrow, bool moving_arg);
 
        ///
-       LyXParagraph * TeXEnvironment(std::ostream &, TexRow & texrow,
-                                     std::ostream & foot, TexRow & foot_texrow,
-                                     int & foot_count);
+       LyXParagraph * TeXEnvironment(Buffer const *, BufferParams const &,
+                                     std::ostream &, TexRow & texrow
+#ifndef NEW_INSETS
+                                     ,std::ostream & foot, TexRow & foot_texrow,
+                                     int & foot_count
+#endif
+               );
        ///
        LyXParagraph * Clone() const;
        
@@ -185,11 +213,14 @@ public:
 
        /** Check if the current paragraph is the last paragraph in a
            proof environment */
-       int GetEndLabel() const;
+       int GetEndLabel(BufferParams const &) const;
        ///
        Inset * InInset() { return inset_owner; }
        ///
-       void SetInsetOwner(Inset * i) { inset_owner = i; }
+       void SetInsetOwner(Inset * i);
+       ///
+       void deleteInsetsLyXText(BufferView *);
+       void resizeInsetsLyXText(BufferView *);
 private:
        ///
        TextContainer text;
@@ -203,9 +234,11 @@ public:
        void fitToSize() {
                text.resize(text.size());
        }
+       ///
        void setContentsFromPar(LyXParagraph * par) {
                text = par->text;
        }
+       ///
        void clearContents() {
                text.clear();
        }
@@ -221,7 +254,7 @@ public:
        
        ///
        LyXTextClass::LayoutList::size_type layout;
-       
+#ifndef NEW_INSETS
        /**
          \begin{itemize}
          \item no footnote, closed footnote, 
@@ -233,7 +266,7 @@ public:
 
        /// footnote, margin, fig, tab
        footnote_kind footnotekind;
-   
+#endif
        //@Man: the LyX- DTP-switches
        //@{
        ///
@@ -258,6 +291,7 @@ public:
         bool noindent;
        
 private:
+       ///
        block<int, 10> counter_;
 public:
        ///
@@ -302,11 +336,12 @@ public:
        ///
        LyXParagraph * previous;
 
+#ifndef NEW_TABULAR
        /* table stuff -- begin*/
        ///
        LyXTable * table;
        /* table stuff -- end*/
-
+#endif
         /// 
         InsetBibKey * bibkey;  // ale970302
 
@@ -319,6 +354,7 @@ public:
        ///
        LyXParagraph const * Previous() const;
 
+#ifndef NEW_INSETS
        /** these function are able to hide open and closed footnotes
         */ 
        LyXParagraph * NextAfterFootnote();
@@ -336,11 +372,11 @@ public:
        LyXParagraph * FirstPhysicalPar();
        ///
        LyXParagraph const * FirstPhysicalPar() const;
-
        /// returns the physical paragraph
        LyXParagraph * ParFromPos(size_type pos);
        /// returns the position in the physical par
        int PositionInParFromPos(size_type pos) const;
+#endif
 
        /// for the environments
        LyXParagraph * DepthHook(int depth);
@@ -349,7 +385,7 @@ public:
        ///
        int BeginningOfMainBody() const;
        ///
-       string GetLabelstring() const;
+       string const & GetLabelstring() const;
        
        /// the next two functions are for the manual labels
        string GetLabelWidthString() const;
@@ -362,9 +398,11 @@ public:
        ///
        char GetDepth() const;
        ///
-       void SetLayout(LyXTextClass::LayoutList::size_type new_layout);
+       void SetLayout(BufferParams const &,
+                      LyXTextClass::LayoutList::size_type new_layout);
        ///
-       void SetOnlyLayout(LyXTextClass::LayoutList::size_type new_layout);
+       void SetOnlyLayout(BufferParams const &,
+                          LyXTextClass::LayoutList::size_type new_layout);
        ///
        int GetFirstCounter(int i) const;
        ///
@@ -373,14 +411,14 @@ public:
        void Erase(size_type pos);
        /** the flag determines wether the layout should be copied
         */ 
-       void BreakParagraph(size_type pos, int flag);
+       void BreakParagraph(BufferParams const &, size_type pos, int flag);
        ///
-       void BreakParagraphConservative(size_type pos);
+       void BreakParagraphConservative(BufferParams const &, size_type pos);
        /** Get unistantiated font setting. Returns the difference
          between the characters font and the layoutfont.
          This is what is stored in the fonttable
         */
-       LyXFont GetFontSettings(size_type pos) const;
+       LyXFont GetFontSettings(BufferParams const &, size_type pos) const;
        ///
        LyXFont GetFirstFontSettings() const;
 
@@ -391,13 +429,11 @@ public:
          attributes with values LyXFont::INHERIT, LyXFont::IGNORE or 
          LyXFont::TOGGLE.
          */
-       LyXFont getFont(size_type pos) const;
+       LyXFont getFont(BufferParams const &, size_type pos) const;
        ///
-       char GetChar(size_type pos);
-       ///
-       char GetChar(size_type pos) const;
+       value_type GetChar(size_type pos) const;
        /// The position must already exist.
-       void SetChar(size_type pos, char c) {
+       void SetChar(size_type pos, value_type c) {
                text[pos] = c;
        }
        
@@ -409,23 +445,29 @@ public:
        LyXFont::FONT_SIZE HighestFontInRange(size_type startpos,
                                              size_type endpos) const;
        ///
-       void InsertChar(size_type pos, char c);
+       void InsertChar(size_type pos, value_type c);
+       ///
+       void InsertChar(size_type pos, value_type c, LyXFont const &);
        ///
        void InsertInset(size_type pos, Inset * inset);
        ///
+       void InsertInset(size_type pos, Inset * inset, LyXFont const &);
+       ///
        bool InsertInsetAllowed(Inset * inset);
        ///
        Inset * GetInset(size_type pos);
        ///
        Inset const * GetInset(size_type pos) const;
+#ifndef NEW_INSETS
        ///
        void OpenFootnote(size_type pos);
        ///
        void CloseFootnote(size_type pos);
+#endif
        /// important for cut and paste
-       void CopyIntoMinibuffer(size_type pos) const;
+       void CopyIntoMinibuffer(BufferParams const &, size_type pos) const;
        ///
-       void CutIntoMinibuffer(size_type pos);
+       void CutIntoMinibuffer(BufferParams const &, size_type pos);
        ///
        bool InsertFromMinibuffer(size_type pos);
 
@@ -433,8 +475,10 @@ public:
        bool IsHfill(size_type pos) const;
        ///
        bool IsInset(size_type pos) const;
+#ifndef NEW_INSETS
        ///
        bool IsFloat(size_type pos) const;
+#endif
        ///
        bool IsNewline(size_type pos) const;
        ///
@@ -456,37 +500,28 @@ public:
        /** paste this paragraph with the next one
          be carefull, this doesent make any check at all
          */ 
-       void PasteParagraph();
+       void PasteParagraph(BufferParams const &);
 
        /// used to remove the error messages
        int AutoDeleteInsets();
 
        /// returns -1 if inset not found
        int GetPositionOfInset(Inset * inset) const;
-       
+
+#ifndef NEW_INSETS
        /// ok and now some footnote functions
        void OpenFootnotes();
 
        ///
        void CloseFootnotes();
-   
        ///
        LyXParagraph * FirstSelfrowPar();
+#endif
 
        ///
-       int ClearParagraph() {
-               int i = 0;
-               if (!IsDummy() && !table){
-                       while (Last()
-                              && (IsNewline(0) 
-                                  || IsLineSeparator(0))){
-                               Erase(0);
-                               ++i;
-                       }
-               }
-               return i;
-       }
-       
+       int StripLeadingSpaces(LyXTextClassList::size_type tclass); 
+
+#ifndef NEW_INSETS
        /** A paragraph following a footnote is a "dummy". A paragraph
          with a footnote in it is stored as three paragraphs:
          First a paragraph with the text up to the footnote, then
@@ -494,26 +529,27 @@ public:
          the a paragraph with the text after the footnote. Only the
          first paragraph keeps information  about layoutparameters, */
        bool IsDummy() const;
-
+#endif
         /* If I set a PExtra Indent on one paragraph of a ENV_LIST-TYPE
            I have to set it on each of it's elements */
        ///
-        void SetPExtraType(int type, char const * width, char const * widthp);
-       ///
-        void UnsetPExtraType();
-#if 0
+        void SetPExtraType(BufferParams const &,
+                          int type, char const * width, char const * widthp);
        ///
-       bool RoffContTableRows(std::ostream &, size_type i, int actcell);
-#endif
+        void UnsetPExtraType(BufferParams const &);
        ///
        bool linuxDocConvertChar(char c, string & sgml_string);
+#ifndef NEW_TABULAR
        ///
-       void DocBookContTableRows(std::ostream &, string & extra,
+       void DocBookContTableRows(Buffer const *,
+                                 std::ostream &, string & extra,
                                  int & desc_on, size_type i,
                                  int current_cell_number, int & column);
        ///
-       void SimpleDocBookOneTablePar(std::ostream &, string & extra,
+       void SimpleDocBookOneTablePar(Buffer const *,
+                                     std::ostream &, string & extra,
                                      int & desc_on, int depth);
+#endif
 private:
        ///
        struct InsetTable {
@@ -528,17 +564,11 @@ private:
        friend struct matchIT;
        ///
        struct matchIT {
-               /// used by lower_bound
+               /// used by lower_bound and upper_bound
                inline
                int operator()(LyXParagraph::InsetTable const & a,
-                              LyXParagraph::size_type pos) const {
-                       return a.pos < pos;
-               }
-               /// used by upper_bound
-               inline
-               int operator()(LyXParagraph::size_type pos,
-                              LyXParagraph::InsetTable const & a) const {
-                       return pos < a.pos;
+                              LyXParagraph::InsetTable const & b) const {
+                       return a.pos < b.pos;
                }
        };
        /** A font entry covers a range of positions. Notice that the
@@ -546,12 +576,15 @@ private:
          I don't think it's worth the effort to implement a more effective
          datastructure, because the number of different fonts in a paragraph
          is limited. (Asger)
+         Nevertheless, I decided to store fontlist using a sorted vector:
+         fontlist = { {pos_1,font_1} , {pos_2,font_2} , ... } where
+         pos_1 < pos_2 < ..., font_{i-1} != font_i for all i,
+         and font_i covers the chars in positions pos_{i-1}+1,...,pos_i
+         (font_1 covers the chars 0,...,pos_1) (Dekel)
        */
        struct FontTable  {
-               /// Start position of paragraph this font attribute covers
+               /// End position of paragraph this font attribute covers
                size_type pos;
-               /// Ending position of paragraph this font attribute covers
-               size_type pos_end;
                /** Font. Interpretation of the font values:
                If a value is LyXFont::INHERIT_*, it means that the font 
                attribute is inherited from either the layout of this
@@ -562,9 +595,22 @@ private:
                allowed in these font tables.
                */
                LyXFont font;
+               ///
+               FontTable(size_type p, LyXFont const & f) {pos = p; font = f;}
+       };
+       friend struct matchFT;
+       ///
+       struct matchFT {
+               /// used by lower_bound and upper_bound
+               inline
+               int operator()(LyXParagraph::FontTable const & a,
+                              LyXParagraph::FontTable const & b) const {
+                       return a.pos < b.pos;
+               }
        };
+
        ///
-       typedef std::list<FontTable> FontList;
+       typedef std::vector<FontTable> FontList;
        ///
        FontList fontlist;
        ///
@@ -572,33 +618,45 @@ private:
        ///
        InsetList insetlist;
        ///
-       LyXParagraph * TeXDeeper(std::ostream &, TexRow & texrow,
-                                std::ostream & foot, TexRow & foot_texrow,
-                                int & foot_count);
+       LyXParagraph * TeXDeeper(Buffer const *, BufferParams const &,
+                                std::ostream &, TexRow & texrow
+#ifndef NEW_INSETS
+                                ,std::ostream & foot, TexRow & foot_texrow,
+                                int & foot_count
+#endif
+               );
+#ifndef NEW_INSETS
        ///
-       LyXParagraph * TeXFootnote(std::ostream &, TexRow & texrow,
+       LyXParagraph * TeXFootnote(Buffer const *, BufferParams const &,
+                                  std::ostream &, TexRow & texrow,
                                   std::ostream & foot, TexRow & foot_texrow,
                                   int & foot_count,
                                   bool parent_is_rtl);
+#endif
+#ifndef NEW_TABULAR
        ///
-       bool SimpleTeXOneTablePar(std::ostream &, TexRow & texrow);
+       bool SimpleTeXOneTablePar(Buffer const *, BufferParams const &,
+                                 std::ostream &, TexRow & texrow);
        ///
-       bool TeXContTableRows(std::ostream &, size_type i,
+       bool TeXContTableRows(Buffer const *, BufferParams const &,
+                             std::ostream &, size_type i,
                              int current_cell_number,
                               int & column, TexRow & texrow);
+#endif
        ///
        void SimpleTeXBlanks(std::ostream &, TexRow & texrow,
                             size_type const i,
                             int & column, LyXFont const & font,
                             LyXLayout const & style);
        ///
-       void SimpleTeXSpecialChars(std::ostream &, TexRow & texrow,
+       void SimpleTeXSpecialChars(Buffer const *, BufferParams const &,
+                                  std::ostream &, TexRow & texrow,
                                   bool moving_arg,
                                   LyXFont & font, LyXFont & running_font,
                                   LyXFont & basefont, bool & open_font,
                                   LyXLayout const & style,
                                   size_type & i,
-                                  int & column, char const c);
+                                  int & column, value_type const c);
        ///
        unsigned int id_;
        ///
@@ -633,7 +691,6 @@ public:
        }
        ///
        inset_iterator InsetIterator(size_type pos);
-
 };
 
 #endif