]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetcaption.C
Don't remove cell selections after fontchange.
[lyx.git] / src / insets / insetcaption.C
index 336142cb2c4de54f584066448d90137c2a40c9cc..f1ba9df2deaec60738e83e180d931f365bd05bc7 100644 (file)
@@ -21,6 +21,8 @@
 #include "FloatList.h"
 #include "insets/insetfloat.h"
 #include "debug.h"
+#include "gettext.h"
+#include "support/lstrings.h"
 
 using std::ostream;
 using std::endl;
@@ -28,21 +30,21 @@ using std::endl;
 InsetCaption::InsetCaption()
        : InsetText()
 {
-       SetAutoBreakRows(true);
-       SetDrawFrame(0, InsetText::LOCKED);
-       SetFrameColor(0, LColor::footnoteframe);
+       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
@@ -53,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");
 }
@@ -95,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
@@ -104,22 +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
 {
-#warning Implement me!
+       // FIX: Implement me!
        return 0;
 }
 
 
-int InsetCaption::DocBook(Buffer const * /*buf*/, ostream & /*os*/) const
+int InsetCaption::docbook(Buffer const * buf, ostream & os) const
 {
-#warning Implement me!
-       return 0;
+       int ret;
+       os << "<title>";
+       ret = InsetText::docbook(buf, os);
+       os << "</title>\n";
+       return ret;
 }