]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetTheorem.cpp
* InsetCollapsable:
[lyx.git] / src / insets / InsetTheorem.cpp
index edd28f4bd6f85f5482f0b2bf03df8ecf7b4224a2..676248caff71773f850d691500fb3ab2125f94fa 100644 (file)
@@ -1,5 +1,6 @@
+#if 0
 /**
- * \file Inset.heorem.cpp
+ * \file InsetTheorem.cpp
  * This file is part of LyX, the document processor.
  * Licence details can be found in the file COPYING.
  *
 
 #include <config.h>
 
-#include "Inset.heorem.h"
+#include "InsetTheorem.h"
 #include "insets/InsetText.h"
 
 #include "debug.h"
 #include "gettext.h"
-#include "Font.h"
+#include "FontInfo.h"
 #include "Text.h"
 #include "MetricsInfo.h"
 
@@ -39,11 +40,6 @@ Inset.heorem::InsetTheorem()
        : InsetCollapsable()
 {
        setLabel(_("theorem"));
-       Font font(Font::ALL_SANE);
-       font.decSize();
-       font.decSize();
-       font.setColor(Color::collapsable);
-       setLabelFont(font);
 #if 0
        setAutoCollapse(false);
 #endif
@@ -53,30 +49,25 @@ Inset.heorem::InsetTheorem()
 
 void Inset.heorem::write(Buffer const * buf, ostream & os) const
 {
-       os << insetName() << "\n";
+       os << name() << "\n";
        InsetCollapsable::write(buf, os);
 }
 
 
-auto_ptr<Inset> Inset.heorem::doClone() const
+Inset * InsetTheorem::clone() const
 {
-#ifdef WITH_WARNINGS
-#warning Is this inset used? If YES this is WRONG!!! (Jug)
-#endif
-       auto_ptr<Inset.heorem> result(new InsetTheorem);
+       // FIXME: Is this inset used? If YES this is WRONG!!! (Jug)
+       InsetTheorem * result = new InsetTheorem;
        result->setCollapsed(!isOpen());
-
        return result;
 }
 
-bool Inset.heorem::metrics(MetricsInfo & mi, Dimension & dim) const
+
+void Inset.heorem::metrics(MetricsInfo & mi, Dimension & dim) const
 {
        InsetCollapsable::metrics(mi, dim);
        center_indent_ = (mi.base.textwidth - dim.wid) / 2;
        dim.wid = mi.base.textwidth;
-       bool const changed = dim_ != dim;
-       dim_ = dim;
-       return changed;
 }
 
 
@@ -105,3 +96,5 @@ int Inset.heorem::latex(Buffer const * buf, odocstream & os,
 
 
 } // namespace lyx
+
+#endif