]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insettext.h
prevent crash when inserting minipage in table cell,
[lyx.git] / src / insets / insettext.h
index 2f2c2886df6847beef7c712dc4dff0f7821f353d..d88a94a8442c9da83726929fa39594f025efc99b 100644 (file)
 #define INSETTEXT_H
 
 #include "updatableinset.h"
+#include "textcursor.h"
 #include "LString.h"
 #include "LColor.h"
 #include "ParagraphList.h"
 #include "RowList.h"
 #include "dimension.h"
-#include "frontends/mouse_state.h"
+#include "lyxtext.h"
 
 #include "support/types.h"
 
+#include "frontends/mouse_state.h"
+
 #include <boost/shared_ptr.hpp>
-#include <map>
 
 class Painter;
 class BufferView;
@@ -72,17 +74,9 @@ public:
        ///
        InsetText(BufferParams const &);
        ///
-       explicit
-       InsetText(InsetText const &);
-       ///
-       //explicit
-       //InsetText(InsetText const &, bool same_id);
-       ///
-       ~InsetText();
+       explicit InsetText(InsetText const &);
        ///
-       Inset * clone(Buffer const &) const;
-       ///
-       //Inset * clone(Buffer const &, bool same_id) const;
+       virtual std::auto_ptr<InsetBase> clone() const;
        ///
        InsetText & operator=(InsetText const & it);
        /// empty inset to empty par, or just mark as erased
@@ -92,15 +86,13 @@ public:
        ///
        void write(Buffer const *, std::ostream &) const;
        ///
-       void dimension(BufferView *, LyXFont const &, Dimension &) const;
-       ///
-       int textWidth(BufferView *, bool fordraw = false) const;
+       void metrics(MetricsInfo &, Dimension &) const;
        ///
-       void draw(BufferView *, LyXFont const &, int , float &) const;
+       int textWidth() const;
        ///
-       void update(BufferView *, bool = false);
+       void draw(PainterInfo & pi, int x, int y) const;
        ///
-       void setUpdateStatus(BufferView *, int what) const;
+       void setUpdateStatus(int what) const;
        ///
        string const editMessage() const;
        ///
@@ -113,7 +105,7 @@ public:
        bool unlockInsetInInset(BufferView *,
                                UpdatableInset *, bool lr = false);
        ///
-       bool updateInsetInInset(BufferView *, Inset *);
+       bool updateInsetInInset(BufferView *, InsetOld *);
        ///
        RESULT localDispatch(FuncRequest const &);
        ///
@@ -122,13 +114,13 @@ public:
        ///
        int ascii(Buffer const *, std::ostream &, int linelen) const;
        ///
-       int linuxdoc(Buffer const *, std::ostream &) const { return 0; }
+       int linuxdoc(Buffer const *, std::ostream &) const ;
        ///
        int docbook(Buffer const *, std::ostream &, bool mixcont) const ;
        ///
        void validate(LaTeXFeatures & features) const;
        ///
-       Inset::Code lyxCode() const { return Inset::TEXT_CODE; }
+       InsetOld::Code lyxCode() const { return InsetOld::TEXT_CODE; }
        /// FIXME, document
        void getCursorPos(BufferView *, int & x, int & y) const;
        /// Get the absolute document x,y of the cursor
@@ -138,30 +130,24 @@ public:
        ///
        void fitInsetCursor(BufferView *) const;
        ///
-       bool insertInset(BufferView *, Inset *);
+       bool insertInset(BufferView *, InsetOld *);
        ///
-       bool insetAllowed(Inset::Code) const;
+       bool insetAllowed(InsetOld::Code) const;
        ///
        UpdatableInset * getLockingInset() const;
        ///
-       UpdatableInset * getFirstLockingInsetOfType(Inset::Code);
+       UpdatableInset * getFirstLockingInsetOfType(InsetOld::Code);
        ///
        void setFont(BufferView *, LyXFont const &,
                     bool toggleall = false,
                     bool selectall = false);
        ///
-       int getMaxWidth(BufferView *, UpdatableInset const *) const;
-       ///
        void init(InsetText const * ins);
        ///
-       //void init(InsetText const * ins, bool same_id);
-       ///
        void writeParagraphData(Buffer const *, std::ostream &) const;
        ///
        void setParagraphData(ParagraphList const &);
        ///
-       //void setParagraphData(ParagraphList const &, bool same_id);
-       ///
        void setText(string const &, LyXFont const &);
        ///
        void setAutoBreakRows(bool);
@@ -175,13 +161,15 @@ public:
        LyXText * getLyXText(BufferView const *,
                             bool const recursive = false) const;
        ///
+       void setViewCache(BufferView const * bv) const;
+       ///
        void deleteLyXText(BufferView *, bool recursive = true) const;
        ///
        void resizeLyXText(BufferView *, bool force = false) const;
        ///
        bool showInsetDialog(BufferView *) const;
        ///
-       std::vector<string> const getLabelList() const;
+       void getLabelList(std::vector<string> &) const;
        ///
        bool nodraw() const;
        ///
@@ -195,11 +183,9 @@ public:
                UpdatableInset::scroll(bv, offset);
        }
        ///
-       void selectAll(BufferView * bv);
-       ///
        void clearSelection(BufferView * bv);
        ///
-       Inset * getInsetFromID(int id) const;
+       InsetOld * getInsetFromID(int id) const;
        ///
        ParagraphList * getParagraphs(int) const;
        ///
@@ -241,7 +227,7 @@ public:
        void appendParagraphs(Buffer * bp, ParagraphList &);
 
        ///
-       void addPreview(grfx::PreviewLoader &) const;
+       void addPreview(lyx::graphics::PreviewLoader &) const;
 
        //
        // Public structures and variables
@@ -279,19 +265,6 @@ private:
        ///
        void lfunMouseMotion(FuncRequest const &);
 
-       ///
-       struct InnerCache {
-               ///
-               InnerCache(boost::shared_ptr<LyXText>);
-               ///
-               boost::shared_ptr<LyXText> text;
-               ///
-               bool remove;
-       };
-       ///
-       typedef std::map<BufferView *, InnerCache> Cache;
-       ///
-       typedef Cache::value_type value_type;
        ///
        RESULT moveRight(BufferView *,
                                         bool activate_inset = true,
@@ -323,31 +296,29 @@ private:
        ///
        void removeNewlines();
        ///
-       int cx(BufferView *) const;
+       int cx() const;
        ///
-       int cix(BufferView *) const;
+       int cix() const;
        ///
-       int cy(BufferView *) const;
+       int cy() const;
        ///
-       int ciy(BufferView *) const;
+       int ciy() const;
        ///
-       lyx::pos_type cpos(BufferView *) const;
+       lyx::pos_type cpos() const;
        ///
-       ParagraphList::iterator cpar(BufferView *) const;
+       ParagraphList::iterator cpar() const;
        ///
-       bool cboundary(BufferView *) const;
+       bool cboundary() const;
        ///
-       RowList::iterator crow(BufferView *) const;
+       RowList::iterator crow() const;
        ///
        void drawFrame(Painter &, int x) const;
        ///
        void clearInset(BufferView *, int start_x, int baseline) const;
        ///
-       void saveLyXTextState(LyXText *) const;
+       void saveLyXTextState() const;
        ///
-       void restoreLyXTextState(LyXText *) const;
-       ///
-       void reinitLyXText() const;
+       void restoreLyXTextState() const;
        ///
        void collapseParagraphs(BufferView *);
 
@@ -355,8 +326,6 @@ private:
        ///
        mutable bool locked;
        ///
-       mutable Dimension dim_;
-       ///
        mutable int top_y;
        ///
        ParagraphList::iterator inset_par;
@@ -369,42 +338,17 @@ private:
        ///
        mutable int inset_y;
        ///
-       mutable int old_max_width;
-       ///
        bool no_selection;
        ///
        UpdatableInset * the_locking_inset;
        ///
        mutable ParagraphList::iterator old_par;
-       /// The cache.
-       mutable Cache cache;
        ///
        mutable int last_drawn_width;
-       ///
-       mutable BufferView * cached_bview;
-       ///
-       mutable boost::shared_ptr<LyXText> cached_text;
-       ///
-       struct save_state {
-               Paragraph * lpar;
-               Paragraph * selstartpar;
-               Paragraph * selendpar;
-               lyx::pos_type pos;
-               lyx::pos_type selstartpos;
-               lyx::pos_type selendpos;
-               bool boundary;
-               bool selstartboundary;
-               bool selendboundary;
-               bool selection;
-               bool mark_set;
-       };
-       ///
-       mutable save_state sstate;
 
-       ///
-       // this is needed globally so we know that we're using it actually and
-       // so the LyXText-Cache is not erased until used!
-       mutable LyXText * lt;
+       /// some funny 'temporarily saved state'
+       mutable TextCursor sstate;
+
        ///
        // to remember old painted frame dimensions to clear it on the right spot!
        ///
@@ -412,15 +356,18 @@ private:
        mutable int frame_y;
        mutable int frame_w;
        mutable int frame_h;
-       ///
-       bool in_update; /* as update is not reentrant! */
-       mutable BufferView * do_resize;
-       mutable bool do_reinit;
        mutable bool in_insetAllowed;
        ///
        // these are used to check for mouse movement in Motion selection code
        ///
        int mouse_x;
        int mouse_y;
+public:
+       ///
+       void reinitLyXText() const;
+       ///
+       mutable LyXText text_;
+       ///
+       mutable int textwidth_;
 };
 #endif