]> git.lyx.org Git - features.git/blobdiff - src/insets/insettext.h
Replace LString.h with support/std_string.h,
[features.git] / src / insets / insettext.h
index 70325f65309be633a927fa705d4c337ed7633fdf..1add1fcd5574096f2395c835af007247fab9a886 100644 (file)
@@ -6,15 +6,14 @@
  *
  * \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 "textcursor.h"
-#include "LString.h"
+#include "support/std_string.h"
 #include "LColor.h"
 #include "ParagraphList.h"
 #include "RowList.h"
@@ -43,25 +42,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 {
                ///
@@ -76,15 +56,15 @@ public:
        ///
        explicit InsetText(InsetText const &);
        ///
-       InsetBase * clone() const;
+       virtual std::auto_ptr<InsetBase> clone() const;
        ///
        InsetText & 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 read(Buffer const &, LyXLex &);
        ///
-       void write(Buffer const *, std::ostream &) const;
+       void write(Buffer const &, std::ostream &) const;
        ///
        void metrics(MetricsInfo &, Dimension &) const;
        ///
@@ -92,8 +72,6 @@ public:
        ///
        void draw(PainterInfo & pi, int x, int y) const;
        ///
-       void setUpdateStatus(int what) const;
-       ///
        string const editMessage() const;
        ///
        bool isTextInset() const { return true; }
@@ -105,22 +83,20 @@ public:
        bool unlockInsetInInset(BufferView *,
                                UpdatableInset *, bool lr = false);
        ///
-       bool updateInsetInInset(BufferView *, Inset *);
-       ///
        RESULT localDispatch(FuncRequest const &);
        ///
-       int latex(Buffer const *, std::ostream &,
+       int latex(Buffer const &, std::ostream &,
                  LatexRunParams const &) const;
        ///
-       int ascii(Buffer const *, std::ostream &, int linelen) const;
+       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 ;
+       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
@@ -130,25 +106,21 @@ 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 writeParagraphData(Buffer const *, std::ostream &) const;
-       ///
-       void setParagraphData(ParagraphList const &);
+       void writeParagraphData(Buffer const &, std::ostream &) const;
        ///
        void setText(string const &, LyXFont const &);
        ///
@@ -156,9 +128,9 @@ public:
        ///
        bool getAutoBreakRows() const { return autoBreakRows; }
        ///
-       void setDrawFrame(BufferView *, DrawFrame);
+       void setDrawFrame(DrawFrame);
        ///
-       void setFrameColor(BufferView *, LColor::color);
+       void setFrameColor(LColor::color);
        ///
        LyXText * getLyXText(BufferView const *,
                             bool const recursive = false) const;
@@ -167,14 +139,10 @@ public:
        ///
        void deleteLyXText(BufferView *, bool recursive = true) const;
        ///
-       void resizeLyXText(BufferView *, bool force = false) const;
-       ///
        bool showInsetDialog(BufferView *) const;
        ///
        void getLabelList(std::vector<string> &) const;
        ///
-       bool nodraw() const;
-       ///
        int scroll(bool recursive = true) const;
        ///
        void scroll(BufferView * bv, float sx) const {
@@ -187,7 +155,7 @@ public:
        ///
        void clearSelection(BufferView * bv);
        ///
-       Inset * getInsetFromID(int id) const;
+       InsetOld * getInsetFromID(int id) const;
        ///
        ParagraphList * getParagraphs(int) const;
        ///
@@ -199,8 +167,6 @@ public:
        selectNextWordToSpellcheck(BufferView *, float & value) const;
        ///
        void selectSelectedWord(BufferView *);
-       ///
-       void toggleSelection(BufferView *, bool kill_selection);
 
        /// mark as erased for change tracking
        void markErased() { clear(true); };
@@ -231,19 +197,15 @@ public:
        ///
        void addPreview(lyx::graphics::PreviewLoader &) const;
 
-       //
-       // Public structures and variables
        ///
-       mutable int need_update;
-
        bool haveParagraphs() const {
                return true;
        }
        ///
-       ParagraphList paragraphs;
+       mutable ParagraphList paragraphs;
 protected:
        ///
-       void updateLocal(BufferView *, int what, bool mark_dirty);
+       void updateLocal(BufferView *, bool mark_dirty);
        /// set parameters for an initial lock of this inset
        void lockInset(BufferView *);
        /// lock an inset inside this one
@@ -268,13 +230,9 @@ private:
        void lfunMouseMotion(FuncRequest const &);
 
        ///
-       RESULT moveRight(BufferView *,
-                                        bool activate_inset = true,
-                                        bool selecting = false);
+       RESULT moveRight(BufferView *);
        ///
-       RESULT moveLeft(BufferView *,
-                                       bool activate_inset = true,
-                                       bool selecting = false);
+       RESULT moveLeft(BufferView *);
        ///
        RESULT moveRightIntern(BufferView *, bool front,
                                               bool activate_inset = true,
@@ -289,7 +247,7 @@ private:
        ///
        RESULT moveDown(BufferView *);
        ///
-       void setCharFont(Buffer const *, int pos, LyXFont const & font);
+       void setCharFont(Buffer const &, int pos, LyXFont const & font);
        ///
        bool checkAndActivateInset(BufferView * bv, bool front);
        ///
@@ -298,14 +256,10 @@ private:
        ///
        void removeNewlines();
        ///
-       int cx(BufferView *) const;
-       ///
-       int cix(BufferView *) const;
+       int cx() const;
        ///
        int cy() const;
        ///
-       int ciy() const;
-       ///
        lyx::pos_type cpos() const;
        ///
        ParagraphList::iterator cpar() const;
@@ -318,10 +272,6 @@ private:
        ///
        void clearInset(BufferView *, int start_x, int baseline) const;
        ///
-       void saveLyXTextState() const;
-       ///
-       void restoreLyXTextState() const;
-       ///
        void collapseParagraphs(BufferView *);
 
        /* Private structures and variables */
@@ -345,19 +295,10 @@ private:
        UpdatableInset * the_locking_inset;
        ///
        mutable ParagraphList::iterator old_par;
-       ///
-       mutable int last_drawn_width;
-
-       /// some funny 'temporarily saved state'
-       mutable TextCursor sstate;
 
        ///
        // 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;
        mutable bool in_insetAllowed;
        ///
        // these are used to check for mouse movement in Motion selection code
@@ -365,8 +306,6 @@ private:
        int mouse_x;
        int mouse_y;
 public:
-       ///
-       void reinitLyXText() const;
        ///
        mutable LyXText text_;
        ///