]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetcaption.h
The speed patch: redraw only rows that have changed
[lyx.git] / src / insets / insetcaption.h
index 1b4feaee446918d3f269e26c527207b931fbac53..c356bc7713a52931493f6e63e06948b7b54bb230 100644 (file)
@@ -6,7 +6,7 @@
  *
  * \author Lars Gullik Bjønnes
  *
- * Full author contact details are available in file CREDITS
+ * Full author contact details are available in file CREDITS.
  */
 
 #ifndef INSETCAPTION_H
@@ -22,37 +22,29 @@ public:
        ///
        InsetCaption(BufferParams const &);
        ///
-       void write(Buffer const * buf, std::ostream & os) const;
+       void write(Buffer const & buf, std::ostream & os) const;
        ///
-       void read(Buffer const * buf, LyXLex & lex);
+       void read(Buffer const & buf, LyXLex & lex);
        ///
-       virtual
-       bool display() const;
+       virtual bool display() const;
        ///
-       virtual
-       bool needFullRow() const;
+       virtual InsetBase::Code lyxCode() const;
        ///
-       virtual
-       Inset::Code lyxCode() const;
+       virtual std::string const editMessage() const;
        ///
-       virtual
-       string const editMessage() const;
+       virtual void draw(PainterInfo & pi, int x, int y) const;
        ///
-       virtual
-       void draw(BufferView * bv, LyXFont const & f,
-                         int baseline, float & x) const;
+       virtual int latex(Buffer const & buf, std::ostream & os,
+                         OutputParams const &) const;
        ///
-       virtual
-       int latex(Buffer const * buf, std::ostream & os,
-                         bool fragile, bool free_spc) const;
+       int plaintext(Buffer const & buf, std::ostream & os,
+                 OutputParams const & runparams) const;
        ///
-       virtual
-       int ascii(Buffer const * buf, std::ostream & os, int linelen) const;
-       ///
-       virtual
-       int docbook(Buffer const * buf, std::ostream & os, bool mixcont) const;
-protected:
+       int docbook(Buffer const & buf, std::ostream & os,
+                   OutputParams const & runparams) const;
 private:
+       ///
+       virtual std::auto_ptr<InsetBase> doClone() const;
 };
 
 
@@ -64,15 +56,9 @@ bool InsetCaption::display() const
 
 
 inline
-bool InsetCaption::needFullRow() const
-{
-       return true;
-}
-
-
-inline
-Inset::Code InsetCaption::lyxCode() const
+InsetBase::Code InsetCaption::lyxCode() const
 {
        return CAPTION_CODE;
 }
+
 #endif