]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insettext.h
the monster patch
[lyx.git] / src / insets / insettext.h
index ee332ec2d5ad1f99f7a950c504c1d42454aa4fc3..c09f845873a612a17d60c5b2a448963edf74a31f 100644 (file)
@@ -6,30 +6,32 @@
  *
  * \author Jürgen Vigna
  *
- * Full author contact details are available in file CREDITS
+ * Full author contact details are available in file CREDITS.
  */
 
 #ifndef INSETTEXT_H
 #define INSETTEXT_H
 
-
 #include "updatableinset.h"
-#include "LString.h"
-#include "LColor.h"
-#include "ParagraphList.h"
+#include "ParagraphList_fwd.h"
+#include "RowList_fwd.h"
+#include "lyxfont.h"
+#include "lyxtext.h"
 
 #include "support/types.h"
 
-#include <boost/shared_ptr.hpp>
+#include "frontends/mouse_state.h"
+
 
-class Painter;
-class BufferView;
 class Buffer;
 class BufferParams;
-class LyXCursor;
-class LyXText;
-class Row;
+class BufferView;
+class Dimension;
+class LColor_color;
+class CursorSlice;
+class Painter;
 class Paragraph;
+class Row;
 
 /**
  A text inset is like a TeX box to write full text
@@ -38,25 +40,6 @@ class Paragraph;
  */
 class InsetText : public UpdatableInset {
 public:
-       ///
-       /// numbers need because of test if codeA < codeB
-       ///
-       enum UpdateCodes {
-               ///
-               NONE = 0,
-               ///
-               CURSOR = 1,
-               ///
-               DRAW_FRAME = 2,
-               ///
-               SELECTION = 4,
-               ///
-               CURSOR_PAR = 8,
-               ///
-               FULL = 16,
-               ///
-               INIT = 32
-       };
        ///
        enum DrawFrame {
                ///
@@ -67,158 +50,81 @@ public:
                ALWAYS
        };
        ///
-       InsetText(BufferParams const &);
+       explicit InsetText(BufferParams const &);
        ///
-       explicit
-       InsetText(InsetText const &, bool same_id = false);
+       InsetText(InsetText const &);
        ///
-       ~InsetText();
+       virtual std::auto_ptr<InsetBase> clone() const;
        ///
-       Inset * clone(Buffer const &, bool same_id = false) const;
-       ///
-       InsetText & operator=(InsetText const & it);
+       void operator=(InsetText const & it);
        /// empty inset to empty par, or just mark as erased
        void clear(bool just_mark_erased);
        ///
-       void read(Buffer const *, LyXLex &);
-       ///
-       void write(Buffer const *, std::ostream &) const;
-       ///
-       int ascent(BufferView *, LyXFont const &) const;
-       ///
-       int descent(BufferView *, LyXFont const &) const;
-       ///
-       int width(BufferView *, LyXFont const & f) const;
-       ///
-       int textWidth(BufferView *, bool fordraw = false) const;
+       void read(Buffer const & buf, LyXLex & lex);
        ///
-       void draw(BufferView *, LyXFont const &, int , float &) const;
+       void write(Buffer const & buf, std::ostream & os) const;
        ///
-       void update(BufferView *, LyXFont const &, bool = false);
+       void metrics(MetricsInfo & mi, Dimension & dim) const;
        ///
-       void setUpdateStatus(BufferView *, int what) const;
+       void draw(PainterInfo & pi, int x, int y) const;
        ///
-       string const editMessage() const;
-       ///
-       void edit(BufferView *, int, int, mouse_button::state);
-       ///
-       void edit(BufferView *, bool front = true);
+       std::string const editMessage() const;
        ///
        bool isTextInset() const { return true; }
        ///
-       void insetUnlock(BufferView *);
-       ///
-       bool lockInsetInInset(BufferView *, UpdatableInset *);
-       ///
-       bool unlockInsetInInset(BufferView *,
-                               UpdatableInset *, bool lr = false);
-       ///
-       bool updateInsetInInset(BufferView *, Inset *);
-       ///
-       RESULT localDispatch(FuncRequest const &);
-       ///
-       int latex(Buffer const *, std::ostream &,
-                 bool fragile, bool free_spc) const;
+       int latex(Buffer const &, std::ostream &,
+                 OutputParams const &) const;
        ///
-       int ascii(Buffer const *, std::ostream &, int linelen) const;
+       int plaintext(Buffer const &, std::ostream &,
+                 OutputParams const &) const;
        ///
-       int linuxdoc(Buffer const *, std::ostream &) const { return 0; }
+       int linuxdoc(Buffer const &, std::ostream &,
+                    OutputParams const &) const ;
        ///
-       int docbook(Buffer const *, std::ostream &, bool mixcont) const ;
+       int docbook(Buffer const &, std::ostream &,
+                   OutputParams const &) 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(int cell, int & x, int & y) const;
        ///
-       void getCursorPos(BufferView *, int & x, int & y) const;
-       ///
-       int insetInInsetY() const;
-       ///
-       void toggleInsetCursor(BufferView *);
-       ///
-       void showInsetCursor(BufferView *, bool show = true);
-       ///
-       void hideInsetCursor(BufferView *);
-       ///
-       void fitInsetCursor(BufferView *) const;
-       ///
-       bool insertInset(BufferView *, Inset *);
-       ///
-       bool insetAllowed(Inset::Code) const;
-       ///
-       UpdatableInset * getLockingInset() const;
-       ///
-       UpdatableInset * getFirstLockingInsetOfType(Inset::Code);
+       bool insetAllowed(InsetOld::Code) const;
        ///
        void setFont(BufferView *, LyXFont const &,
                     bool toggleall = false,
                     bool selectall = false);
        ///
-       int getMaxWidth(BufferView *, UpdatableInset const *) const;
-       ///
-       void init(InsetText const * ins = 0, bool same_id = false);
-       ///
-       void writeParagraphData(Buffer const *, std::ostream &) const;
-       ///
-       void setParagraphData(Paragraph *, bool same_id = false);
-       ///
-       void setText(string const &, LyXFont const &);
+       void setText(std::string const &, LyXFont const &);
        ///
        void setAutoBreakRows(bool);
        ///
-       bool getAutoBreakRows() const { return autoBreakRows; }
-       ///
-       void setDrawFrame(BufferView *, DrawFrame);
+       bool getAutoBreakRows() const { return autoBreakRows_; }
        ///
-       void setFrameColor(BufferView *, LColor::color);
+       void setDrawFrame(DrawFrame);
        ///
-       LyXText * getLyXText(BufferView const *,
-                            bool const recursive = false) const;
+       LColor_color frameColor() const;
        ///
-       void deleteLyXText(BufferView *, bool recursive = true) const;
+       void setFrameColor(LColor_color);
        ///
-       void resizeLyXText(BufferView *, bool force = false) const;
+       void setViewCache(BufferView const * bv) const;
        ///
        bool showInsetDialog(BufferView *) const;
-       ///
-       std::vector<string> const getLabelList() const;
-       ///
-       bool nodraw() const;
+       /// Appends \c list with all labels found within this inset.
+       void getLabelList(Buffer const &, std::vector<std::string> & list) const;
        ///
        int scroll(bool recursive = true) const;
        ///
-       void scroll(BufferView * bv, float sx) const {
+       void scroll(BufferView & bv, float sx) const {
                UpdatableInset::scroll(bv, sx);
        }
        ///
-       void scroll(BufferView * bv, int offset) const {
+       void scroll(BufferView & bv, int offset) const {
                UpdatableInset::scroll(bv, offset);
        }
        ///
-       void selectAll(BufferView * bv);
-       ///
-       void clearSelection(BufferView * bv);
-       ///
-       Inset * getInsetFromID(int id) const;
-       ///
-       Paragraph * firstParagraph() const;
-       ///
-       Paragraph * getFirstParagraph(int) const;
-       ///
-       LyXCursor const & cursor(BufferView *) const;
-       ///
-       Paragraph * paragraph() const;
-       ///
-       void paragraph(Paragraph *);
-       ///
-       bool allowSpellcheck() const { return true; }
-       ///
-       WordLangTuple const
-       selectNextWordToSpellcheck(BufferView *, float & value) const;
-       ///
-       void selectSelectedWord(BufferView *);
-       ///
-       void toggleSelection(BufferView *, bool kill_selection);
+       LyXText * getText(int) const;
 
        /// mark as erased for change tracking
        void markErased() { clear(true); };
@@ -230,204 +136,65 @@ public:
         * for the (empty) paragraph contained.
         */
        void markNew(bool track_changes = false);
-       /// find next change
-       bool nextChange(BufferView *, lyx::pos_type & length);
 
-       ///
-       bool searchForward(BufferView *, string const &,
-                          bool = true, bool = false);
-       ///
-       bool searchBackward(BufferView *, string const &,
-                           bool = true, bool = false);
-       ///
-       bool checkInsertChar(LyXFont &);
-       ///
-       void getDrawFont(LyXFont &) const;
        /// append text onto the existing text
-       void appendParagraphs(Buffer * bp, Paragraph *);
-
-       ///
-       void addPreview(grfx::PreviewLoader &) const;
+       void appendParagraphs(Buffer * bp, ParagraphList &);
 
-       //
-       // Public structures and variables
        ///
-       mutable int need_update;
+       void addPreview(lyx::graphics::PreviewLoader &) const;
 
        ///
-       ParagraphList paragraphs;
-protected:
-       ///
-       void updateLocal(BufferView *, int what, bool mark_dirty);
-       /// set parameters for an initial lock of this inset
-       void lockInset(BufferView *);
-       /// lock an inset inside this one
-       void lockInset(BufferView *, UpdatableInset *);
-       ///
-       mutable int drawTextXOffset;
-       ///
-       mutable int drawTextYOffset;
-       ///
-       bool autoBreakRows;
-       ///
-       DrawFrame drawFrame_;
+       void edit(BufferView *, bool);
        ///
-       LColor::color frame_color;
+       void edit(BufferView *, int, int);
 
-private:
        ///
-       void lfunMousePress(FuncRequest const &);
+       int numParagraphs() const { return 1; }
        ///
-       bool lfunMouseRelease(FuncRequest const &);
-       ///
-       void lfunMouseMotion(FuncRequest const &);
+       ParagraphList & paragraphs() const;
 
+private:
        ///
-       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,
-                                        bool selecting = false);
-       ///
-       RESULT moveLeft(BufferView *,
-                                       bool activate_inset = true,
-                                       bool selecting = false);
-       ///
-       RESULT moveRightIntern(BufferView *, bool front,
-                                              bool activate_inset = true,
-                                              bool selecting = false);
-       ///
-       RESULT moveLeftIntern(BufferView *, bool front,
-                                             bool activate_inset = true,
-                                             bool selecting = false);
-
-       ///
-       RESULT moveUp(BufferView *);
-       ///
-       RESULT moveDown(BufferView *);
+       DispatchResult
+       priv_dispatch(BufferView & bv, FuncRequest const & cmd);
        ///
-       void setCharFont(Buffer const *, int pos, LyXFont const & font);
+       void updateLocal(BufferView *);
        ///
-       bool checkAndActivateInset(BufferView * bv, bool front);
+       void init();
+       // If the inset is empty set the language of the current font to the
+       // language to the surronding text (if different).
+       void sanitizeEmptyText(BufferView *);
        ///
-       bool checkAndActivateInset(BufferView * bv, int x = 0, int y = 0,
-                                  mouse_button::state button = mouse_button::none);
+       void setCharFont(Buffer const &, int pos, LyXFont const & font);
        ///
        void removeNewlines();
        ///
-       int cx(BufferView *) const;
-       ///
-       int cix(BufferView *) const;
-       ///
-       int cy(BufferView *) const;
-       ///
-       int ciy(BufferView *) const;
-       ///
-       lyx::pos_type cpos(BufferView *) const;
-       ///
-       Paragraph * cpar(BufferView *) const;
-       ///
-       bool cboundary(BufferView *) const;
+       void drawFrame(Painter &, int x) const;
        ///
-       Row * crow(BufferView *) const;
-       ///
-       void drawFrame(Painter &) const;
-       ///
-       void clearInset(BufferView *, int baseline) const;
-       ///
-       void saveLyXTextState(LyXText *) const;
-       ///
-       void restoreLyXTextState(BufferView *, LyXText *) const;
-       ///
-       void reinitLyXText() const;
+       void clearInset(Painter &, int x, int y) const;
        ///
        void collapseParagraphs(BufferView *);
 
        /* Private structures and variables */
        ///
-       mutable bool locked;
-       ///
-       mutable int insetAscent;
-       ///
-       mutable int insetDescent;
-       ///
-       mutable int insetWidth;
-       ///
-       mutable int top_y;
-       ///
-       Paragraph * inset_par;
-       ///
-       lyx::pos_type inset_pos;
-       ///
-       bool inset_boundary;
-       ///
-       mutable int inset_x;
-       ///
-       mutable int inset_y;
-       ///
-       mutable int old_max_width;
+       bool autoBreakRows_;
        ///
-       bool no_selection;
-       ///
-       UpdatableInset * the_locking_inset;
-       ///
-       mutable Paragraph * 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;
-       };
+       DrawFrame drawFrame_;
+       /** We store the LColor::color value as an int to get LColor.h out
+        *  of the header file.
+        */
+       int frame_color_;
        ///
-       mutable save_state sstate;
+       mutable lyx::paroffset_type old_par;
 
-       ///
-       // 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;
-       ///
-       // to remember old painted frame dimensions to clear it on the right spot!
-       ///
-       mutable int frame_x;
-       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;
+       /** to remember old painted frame dimensions to clear it on
+        *  the right spot!
+        */
        mutable bool in_insetAllowed;
+public:
        ///
-       // these are used to check for mouse movement in Motion selection code
+       mutable LyXText text_;
        ///
-       int mouse_x;
-       int mouse_y;
+       mutable LyXFont font_;
 };
 #endif