]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetcaption.h
The markDirty() and fitCursor() changes
[lyx.git] / src / insets / insetcaption.h
index 01f296911940e001f2f223a3d87ec5c9eeb200d4..1b4feaee446918d3f269e26c527207b931fbac53 100644 (file)
@@ -1,21 +1,17 @@
 // -*- C++ -*-
-/* This file is part of
- * ======================================================
- * 
- *           LyX, The Document Processor
+/**
+ * \file insetcaption.h
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- *           Copyright 2000-2001 The LyX Team.
+ * \author Lars Gullik Bjønnes
  *
- *======================================================
+ * Full author contact details are available in file CREDITS
  */
 
-
 #ifndef INSETCAPTION_H
 #define INSETCAPTION_H
 
-#ifdef __GNUG__
-#pragma interface
-#endif
 
 #include "insettext.h"
 
 class InsetCaption : public InsetText {
 public:
        ///
-       InsetCaption();
+       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;
@@ -37,24 +33,24 @@ public:
        bool needFullRow() const;
        ///
        virtual
-       Inset::Code LyxCode() const;
+       Inset::Code lyxCode() const;
        ///
        virtual
-       string const EditMessage() const;
+       string const editMessage() const;
        ///
        virtual
        void draw(BufferView * bv, LyXFont const & f,
-                         int baseline, float & x, bool cleared) const;
+                         int baseline, float & x) const;
        ///
        virtual
-       int Latex(Buffer const * buf, std::ostream & os,
+       int latex(Buffer const * buf, std::ostream & os,
                          bool fragile, bool free_spc) const;
        ///
        virtual
-       int Ascii(Buffer const * buf, std::ostream & os, int linelen) const;
+       int ascii(Buffer const * buf, std::ostream & os, int linelen) const;
        ///
        virtual
-       int DocBook(Buffer const * buf, std::ostream & os) const;
+       int docbook(Buffer const * buf, std::ostream & os, bool mixcont) const;
 protected:
 private:
 };
@@ -68,14 +64,14 @@ bool InsetCaption::display() const
 
 
 inline
-bool InsetCaption::needFullRow() const 
+bool InsetCaption::needFullRow() const
 {
        return true;
 }
 
 
 inline
-Inset::Code InsetCaption::LyxCode() const 
+Inset::Code InsetCaption::lyxCode() const
 {
        return CAPTION_CODE;
 }