]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetcaption.h
2002-05-30 Lars Gullik Bj�nnes <larsbj@birdstep.com>
[lyx.git] / src / insets / insetcaption.h
index 01f296911940e001f2f223a3d87ec5c9eeb200d4..35da0d33cd6728cb0b833edb2bd11d3a5283a203 100644 (file)
@@ -1,7 +1,7 @@
 // -*- C++ -*-
 /* This file is part of
  * ======================================================
- * 
+ *
  *           LyX, The Document Processor
  *
  *           Copyright 2000-2001 The LyX Team.
 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 +37,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;
        ///
        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) const;
 protected:
 private:
 };
@@ -68,14 +68,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;
 }