]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetert.h
The speed patch: redraw only rows that have changed
[lyx.git] / src / insets / insetert.h
index 1bac74bbd244f0b7e0f9637fcbbbfcac16844174..162e8950dcaed15744ee0963140e4c91a5b964d7 100644 (file)
@@ -7,7 +7,7 @@
  * \author Jürgen Vigna
  * \author Lars Gullik Bjønnes
  *
- * Full author contact details are available in file CREDITS
+ * Full author contact details are available in file CREDITS.
  */
 
 #ifndef INSETERT_H
@@ -30,113 +30,60 @@ class Language;
 class InsetERT : public InsetCollapsable {
 public:
        ///
-       enum ERTStatus {
-               Open,
-               Collapsed,
-               Inlined
-       };
-       ///
-       InsetERT(BufferParams const &, bool collapsed = false);
-       ///
-       InsetERT(InsetERT const &);
-       ///
-       virtual std::auto_ptr<InsetBase> clone() const;
+       InsetERT(BufferParams const &, CollapseStatus status = Open);
        ///
        InsetERT(BufferParams const &,
-                Language const *, string const & contents, bool collapsed);
+                Language const *, std::string const & contents, CollapseStatus status);
        ///
        ~InsetERT();
        ///
-       InsetOld::Code lyxCode() const { return InsetOld::ERT_CODE; }
-       ///
-       void read(Buffer const * buf, LyXLex & lex);
-       ///
-       void write(Buffer const * buf, std::ostream & os) const;
-       ///
-       string const editMessage() const;
+       InsetBase::Code lyxCode() const { return InsetBase::ERT_CODE; }
        ///
-       bool insertInset(BufferView *, InsetOld *);
+       void write(Buffer const & buf, std::ostream & os) const;
        ///
-       bool insetAllowed(InsetOld::Code code) const { return code == InsetOld::NEWLINE_CODE; }
+       std::string const editMessage() const;
        ///
-       void setFont(BufferView *, LyXFont const &,
-                            bool toggleall = false, bool selectall = false);
+       bool insetAllowed(InsetBase::Code code) const;
        ///
-       EDITABLE editable() const;
+       int latex(Buffer const &, std::ostream &,
+                 OutputParams const &) const;
        ///
-       int latex(Buffer const *, std::ostream &,
-                 LatexRunParams const &) const;
+       int plaintext(Buffer const &, std::ostream &,
+                 OutputParams const & runparams) const;
        ///
-       int ascii(Buffer const *,
-                         std::ostream &, int linelen = 0) const;
+       int linuxdoc(Buffer const &, std::ostream &,
+                    OutputParams const &) const;
        ///
-       int linuxdoc(Buffer const *, std::ostream &) const;
-       ///
-       int docbook(Buffer const *, std::ostream &, bool mixcont) const;
+       int docbook(Buffer const &, std::ostream &,
+                   OutputParams const & runparams) const;
        ///
        void validate(LaTeXFeatures &) const {}
        ///
-       RESULT localDispatch(FuncRequest const &);
-       ///
-       bool checkInsertChar(LyXFont &);
-       ///
-       // this are needed here because of the label/inlined functionallity
-       ///
-       bool needFullRow() const { return status_ == Open; }
-       ///
-       bool isOpen() const { return status_ == Open || status_ == Inlined; }
-       ///
-       bool inlined() const { return status_ == Inlined; }
-       ///
-       ERTStatus status() const { return status_; }
-       ///
-       void open(BufferView *);
-       ///
-       void close(BufferView *) const;
-       ///
-       bool allowSpellcheck() const { return false; }
-
-       WordLangTuple const
-       selectNextWordToSpellcheck(BufferView *, float &) const;
-       ///
        void metrics(MetricsInfo &, Dimension &) const;
        ///
        void draw(PainterInfo & pi, int x, int y) const;
-       /// set the status of the inset
-       void status(BufferView *, ERTStatus const st) const;
        ///
        bool showInsetDialog(BufferView *) const;
        ///
        void getDrawFont(LyXFont &) const;
        ///
-       bool forceDefaultParagraphs(InsetOld const *) const {
-               return true;
-       }
-
-private:
-       ///
-       void lfunMousePress(FuncRequest const &);
-       ///
-       // the bool return is used to see if we opened a dialog so that we can
-       // check this from an outer inset and open the dialog of the outer inset
-       // if that one has one!
+       bool forceDefaultParagraphs(idx_type) const { return true; }
+       /// should paragraph indendation be ommitted in any case?
+       bool neverIndent() const { return true; }
+protected:
+       InsetERT(InsetERT const &);
        ///
-       bool lfunMouseRelease(FuncRequest const &);
+       virtual void doDispatch(LCursor & cur, FuncRequest & cmd);
        ///
-       void lfunMouseMotion(FuncRequest const &);
+       bool getStatus(LCursor & cur, FuncRequest const & cmd, FuncStatus &) const;
+private:
+       virtual std::auto_ptr<InsetBase> doClone() const;
        ///
        void init();
        ///
-       string const get_new_label() const;
-       ///
-       void setButtonLabel() const;
-       ///
-       void set_latex_font(BufferView *);
-       /// update status on button
-       void updateStatus(BufferView *, bool = false) const;
-
+       void setButtonLabel();
        ///
-       mutable ERTStatus status_;
+       bool allowSpellCheck() const { return false; }
 };
 
 
@@ -149,16 +96,17 @@ public:
        ///
        virtual InsetBase & inset() const { return inset_; }
        ///
-       virtual string const & name() const { return name_; }
+       virtual std::string const & name() const { return name_; }
        ///
-       virtual string const inset2string(Buffer const &) const;
+       virtual std::string const inset2string(Buffer const &) const;
        ///
-       static void string2params(string const &, InsetERT::ERTStatus &);
+       static void string2params(std::string const &,
+               InsetCollapsable::CollapseStatus &);
        ///
-       static string const params2string(InsetERT::ERTStatus);
+       static std::string const params2string(InsetCollapsable::CollapseStatus);
 private:
        ///
-       static string const name_;
+       static std::string const name_;
        ///
        InsetERT & inset_;
 };