]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetcaption.h
Rename LatexRunParams::fragile as moving_arg.
[lyx.git] / src / insets / insetcaption.h
index b9705f062367356cf4f42f93163a838495c512c1..af616f662894dff6327f7d40419527b7e5dd440c 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"
 
@@ -30,33 +26,23 @@ public:
        ///
        void read(Buffer const * buf, LyXLex & lex);
        ///
-       virtual
-       bool display() const;
+       virtual bool display() const;
        ///
-       virtual
-       bool needFullRow() const;
+       virtual bool needFullRow() const;
        ///
-       virtual
-       Inset::Code lyxCode() const;
+       virtual Inset::Code lyxCode() const;
        ///
-       virtual
-       string const editMessage() const;
+       virtual string const editMessage() const;
        ///
-       virtual
-       void draw(BufferView * bv, LyXFont const & f,
-                         int baseline, float & x, bool cleared) const;
+       virtual void draw(BufferView * bv, LyXFont const & f,
+                         int baseline, float & x) const;
        ///
-       virtual
-       int latex(Buffer const * buf, std::ostream & os,
-                         bool fragile, bool free_spc) const;
+       virtual int latex(Buffer const * buf, std::ostream & os,
+                         LatexRunParams const &) 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:
-private:
 };
 
 
@@ -79,4 +65,5 @@ Inset::Code InsetCaption::lyxCode() const
 {
        return CAPTION_CODE;
 }
+
 #endif