]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetcaption.C
fix typo that put too many include paths for most people
[lyx.git] / src / insets / insetcaption.C
index 02af2b6714643087b8407902e8d9a336862c389f..1414e2d438de57ba91e6e87124a644a21b5331c3 100644 (file)
@@ -1,8 +1,8 @@
 /* This file is part of
  * ======================================================
- * 
+ *
  *           LyX, The Document Processor
- *      
+ *
  *          Copyright 2000-2001 The LyX Team.
  *
  * ======================================================
 #include "insets/insetfloat.h"
 #include "debug.h"
 #include "gettext.h"
+#include "support/lstrings.h"
 
 using std::ostream;
 using std::endl;
 
-InsetCaption::InsetCaption()
-       : InsetText()
+InsetCaption::InsetCaption(BufferParams const & bp)
+       : InsetText(bp)
 {
-       SetAutoBreakRows(true);
-       SetDrawFrame(0, InsetText::LOCKED);
-       SetFrameColor(0, LColor::captionframe);
+       setAutoBreakRows(true);
+       setDrawFrame(0, InsetText::LOCKED);
+       setFrameColor(0, LColor::captionframe);
 }
 
 
-void InsetCaption::Write(Buffer const * buf, ostream & os) const
+void InsetCaption::write(Buffer const * buf, ostream & os) const
 {
        os << "Caption\n";
-       WriteParagraphData(buf, os);
+       writeParagraphData(buf, os);
 }
 
 
 
-void InsetCaption::Read(Buffer const * buf, LyXLex & lex)
+void InsetCaption::read(Buffer const * buf, LyXLex & lex)
 {
 #if 0
        // We will enably this check again when the compability
@@ -54,11 +55,11 @@ void InsetCaption::Read(Buffer const * buf, LyXLex & lex)
                       << endl;
        }
 #endif
-       InsetText::Read(buf, lex);
+       InsetText::read(buf, lex);
 }
 
 
-string const InsetCaption::EditMessage() const 
+string const InsetCaption::editMessage() const
 {
        return _("Opened Caption Inset");
 }
@@ -86,7 +87,7 @@ void InsetCaption::draw(BufferView * bv, LyXFont const & f,
 
        // Generate the label
        string const label = _(fl) + " " + num + ":";
-       
+
        Painter & pain = bv->painter();
        int const w = lyxfont::width(label, f);
        pain.text(int(x), baseline, label, f);
@@ -96,7 +97,7 @@ void InsetCaption::draw(BufferView * bv, LyXFont const & f,
 }
 
 
-int InsetCaption::Latex(Buffer const * buf, ostream & os,
+int InsetCaption::latex(Buffer const * buf, ostream & os,
                        bool fragile, bool free_spc) const
 {
        // This is a bit too simplistic to take advantage of
@@ -105,26 +106,25 @@ int InsetCaption::Latex(Buffer const * buf, ostream & os,
        // \caption{...}, later we will make it take advantage
        // of the one of the caption packages. (Lgb)
        ostringstream ost;
-       int const l = InsetText::Latex(buf, ost, fragile, free_spc);
+       int const l = InsetText::latex(buf, ost, fragile, free_spc);
        os << "\\caption{" << ost.str() << "}\n";
        return l + 1;
 }
 
 
-int InsetCaption::Ascii(Buffer const * /*buf*/,
+int InsetCaption::ascii(Buffer const * /*buf*/,
                        ostream & /*os*/, int /*linelen*/) const
 {
-#ifdef WITH_WARNINGS
-#warning Implement me!
-#endif
+       // FIX: Implement me!
        return 0;
 }
 
 
-int InsetCaption::DocBook(Buffer const * /*buf*/, ostream & /*os*/) const
+int InsetCaption::docbook(Buffer const * buf, ostream & os) const
 {
-#ifdef WITH_WARNINGS
-#warning Implement me!
-#endif
-       return 0;
+       int ret;
+       os << "<title>";
+       ret = InsetText::docbook(buf, os);
+       os << "</title>\n";
+       return ret;
 }