]> 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 b9705f062367356cf4f42f93163a838495c512c1..c356bc7713a52931493f6e63e06948b7b54bb230 100644 (file)
@@ -1,21 +1,17 @@
 // -*- C++ -*-
-/* This file is part of
- * ======================================================
+/**
+ * \file insetcaption.h
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- *           LyX, The Document Processor
+ * \author Lars Gullik Bjønnes
  *
- *           Copyright 2000-2001 The LyX Team.
- *
- *======================================================
+ * Full author contact details are available in file CREDITS.
  */
 
-
 #ifndef INSETCAPTION_H
 #define INSETCAPTION_H
 
-#ifdef __GNUG__
-#pragma interface
-#endif
 
 #include "insettext.h"
 
@@ -26,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, bool cleared) 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;
 };
 
 
@@ -68,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