]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insettext.h
updates to minipage inset
[lyx.git] / src / insets / insettext.h
index b6a45ba050e34756f798fba70071c74a1e91a8aa..e14b164512f986c46b8e1488b13b79060a3fadb1 100644 (file)
@@ -6,6 +6,7 @@
  *
  *           Copyright 1998 The LyX Team.
  *
+ *
  *======================================================
  */
 // The pristine updatable inset: Text
@@ -32,49 +33,75 @@ class LyXText;
 class LyXScreen;
 
 /**
- * A text inset is like a TeX box to write full text
- * (including styles and other insets) in a given space. 
+ A text inset is like a TeX box to write full text
+ (including styles and other insets) in a given space. 
+ @author: Jürgen Vigna
  */
 class InsetText : public UpdatableInset {
 public:
     ///
-    enum { TEXT_TO_INSET_OFFSET = 2 };
+    /// numbers need because of test if codeA < codeB
     ///
     enum UpdateCodes {
+       ///
        NONE = 0,
-       INIT,
-       FULL,
-       CURSOR_PAR
+       ///
+       CURSOR = 1,
+       ///
+       CLEAR_FRAME = 2,
+       ///
+       DRAW_FRAME = 4,
+       ///
+       SELECTION = 8,
+       ///
+       CURSOR_PAR = 16,
+       ///
+       FULL = 32,
+       ///
+       INIT = 64
+    };
+    ///
+    enum DrawFrame {
+       ///
+       NEVER = 0,
+       ///
+       LOCKED,
+       ///
+       ALWAYS
     };
     ///
-    explicit
     InsetText();
     ///
+    explicit
     InsetText(InsetText const &);
     ///
     ~InsetText();
     ///
-    Inset * Clone() const;
+    Inset * Clone(Buffer const &) const;
     ///
-    InsetText & operator= (InsetText const & it);
+    InsetText & operator=(InsetText const & it);
     ///
-    void clear() const { par->clearContents(); }
+    void clear();
     ///
     void Read(Buffer const *, LyXLex &);
     ///
     void Write(Buffer const *, std::ostream &) const;
     ///
-    int ascent(Painter &, LyXFont const &) const;
+    int ascent(BufferView *, LyXFont const &) const;
     ///
-    int descent(Painter &, LyXFont const &) const;
+    int descent(BufferView *, LyXFont const &) const;
     ///
-    int width(Painter &, LyXFont const & f) const;
+    int width(BufferView *, LyXFont const & f) const;
     ///
-    void draw(BufferView *, LyXFont const &, int , float &) const;
+    int textWidth(Painter &) const;
+    ///
+    void draw(BufferView *, LyXFont const &, int , float &, bool) const;
     ///
     void update(BufferView *, LyXFont const &, bool =false);
     ///
-    char const * EditMessage() const;
+    void SetUpdateStatus(BufferView *, int what);
+    ///
+    string const EditMessage() const;
     ///
     void Edit(BufferView *, int, int, unsigned int);
     ///
@@ -98,15 +125,16 @@ public:
     ///
     void InsetKeyPress(XKeyEvent *);
     ///
-    UpdatableInset::RESULT LocalDispatch(BufferView *, int, string const &);
+    UpdatableInset::RESULT LocalDispatch(BufferView *, kb_action, string const &);
     ///
-    int Latex(Buffer const *, std::ostream &, bool fragile, bool free_spc) const;
+    int Latex(Buffer const *, std::ostream &,
+             bool fragile, bool free_spc) const;
     ///
-    int Ascii(Buffer const *, std::ostream &) const { return 0; }
+    int Ascii(Buffer const *, std::ostream &, int linelen) const;
     ///
     int Linuxdoc(Buffer const *, std::ostream &) const { return 0; }
     ///
-    int DocBook(Buffer const *, std::ostream &) const { return 0; }
+    int DocBook(Buffer const *, std::ostream &) const ;
     ///
     void Validate(LaTeXFeatures & features) const;
     ///
@@ -114,7 +142,7 @@ public:
     ///
     void GetCursorPos(BufferView *, int & x, int & y) const;
     ///
-    int InsetInInsetY();
+    unsigned int InsetInInsetY();
     ///
     void ToggleInsetCursor(BufferView *);
     ///
@@ -126,36 +154,43 @@ public:
     ///
     void SetFont(BufferView *, LyXFont const &, bool toggleall = false);
     ///
+    int getMaxWidth(Painter &, UpdatableInset const *) const;
+    ///
     void init(InsetText const * ins = 0);
     ///
+    void WriteParagraphData(Buffer const *, std::ostream &) const;
+    ///
     void SetParagraphData(LyXParagraph *);
     ///
+    void SetText(string const &);
+    ///
     void SetAutoBreakRows(bool);
     ///
-    void SetDrawLockedFrame(bool);
+    void SetDrawFrame(BufferView *, DrawFrame);
     ///
-    void SetFrameColor(LColor::color);
+    void SetFrameColor(BufferView *, LColor::color);
     ///
-    LyXFont GetDrawFont(BufferView *, LyXParagraph *, int pos) const;
+    LyXText * getLyXText(BufferView const *, bool const recursive=false) const;
+    ///
+    void deleteLyXText(BufferView *, bool recursive=true) const;
+    ///
+    void resizeLyXText(BufferView *) const;
     ///
-    LyXText * getLyXText(BufferView *) const;
-    void deleteLyXText(BufferView *);
-
     LyXParagraph * par;
+    ///
+    mutable int need_update;
 
 protected:
     ///
-    void UpdateLocal(BufferView *, UpdateCodes, bool mark_dirty);
+    void UpdateLocal(BufferView *, int what, bool mark_dirty);
     ///
-    void WriteParagraphData(Buffer const *, std::ostream &) const;
-    ///
-    virtual int getMaxTextWidth(Painter &, UpdatableInset const *) const;
-
     mutable int drawTextXOffset;
+    ///
     mutable int drawTextYOffset;
     ///
     bool autoBreakRows;
-    bool drawLockedFrame;
+    ///
+    DrawFrame drawFrame;
     ///
     LColor::color frame_color;
 
@@ -167,13 +202,24 @@ private:
     ///
     int BeginningOfMainBody(Buffer const *, LyXParagraph * par) const;
     ///
-    void ShowInsetCursor(BufferView *);
+    void ShowInsetCursor(BufferView *, bool show=true);
     ///
     void HideInsetCursor(BufferView *);
     ///
-    UpdatableInset::RESULT moveRight(BufferView *, bool activate_inset = true);
+    UpdatableInset::RESULT moveRight(BufferView *, bool activate_inset = true,
+                                    bool selecting = false);
     ///
-    UpdatableInset::RESULT moveLeft(BufferView *, bool activate_inset = true);
+    UpdatableInset::RESULT moveLeft(BufferView *, bool activate_inset = true,
+                                   bool selecting = false);
+    ///
+    UpdatableInset::RESULT moveRightIntern(BufferView *, bool behind,
+                                          bool activate_inset = true,
+                                          bool selecting = false);
+    ///
+    UpdatableInset::RESULT moveLeftIntern(BufferView *, bool behind, 
+                                         bool activate_inset = true,
+                                         bool selecting = false);
+
     ///
     UpdatableInset::RESULT moveUp(BufferView *);
     ///
@@ -181,26 +227,53 @@ private:
     ///
     void SetCharFont(Buffer const *, int pos, LyXFont const & font);
     ///
-    string getText(int);
+    string const getText(int);
+    ///
+    bool checkAndActivateInset(BufferView * bv, bool behind);
     ///
     bool checkAndActivateInset(BufferView * bv, int x = 0, int y = 0,
                               int button = 0);
+    void removeNewlines();
+
     ///
     int cx(BufferView *) const;
+    ///
     int cy(BufferView *) const;
-    int cpos(BufferView *) const;
+    ///
+    LyXParagraph::size_type cpos(BufferView *) const;
+    ///
     LyXParagraph * cpar(BufferView *) const;
+    ///
+    bool cboundary(BufferView *) const;
+    ///
     Row * crow(BufferView *) const;
+
+    /// This instead of a macro
+    LyXText * TEXT(BufferView * bv) const {
+       return getLyXText(bv);
+    }
        
     /* Private structures and variables */
     ///
-    bool locked;
+    mutable bool locked;
+    ///
+    mutable int insetAscent;
+    ///
+    mutable int insetDescent;
+    ///
+    mutable int insetWidth;
+    ///
+    mutable int last_width;
     ///
-    int insetAscent;
-    int insetDescent;
-    int insetWidth;
+    mutable int last_height;
     ///
-    int inset_pos;
+    mutable int top_y;
+    ///
+    LyXParagraph * inset_par;
+    ///
+    LyXParagraph::size_type inset_pos;
+    ///
+    bool inset_boundary;
     ///
     mutable int inset_x;
     ///
@@ -212,8 +285,6 @@ private:
     ///
     mutable float xpos;
     ///
-    mutable UpdateCodes need_update;
-    ///
     UpdatableInset * the_locking_inset;
     ///
     LyXParagraph * old_par;