]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insethfill.C
changelogs
[lyx.git] / src / insets / insethfill.C
index 2a01033757690873ac428725b5825e936df613b3..32e4bb40bdc9446a451deb26914559d11daeb599 100644 (file)
@@ -5,38 +5,83 @@
  *
  * \author André Pönitz
  *
- * Full author contact details are available in file CREDITS
+ * Full author contact details are available in file CREDITS.
  */
 
 #include <config.h>
 
-
 #include "insethfill.h"
-#include "support/LOstream.h"
+
+#include "support/std_ostream.h"
 
 using std::ostream;
 
+
 InsetHFill::InsetHFill()
-       : InsetCommand(InsetCommandParams("hfill"))
+       : InsetCommand(InsetCommandParams("hfill"), std::string())
 {}
 
 
-int InsetHFill::latex(Buffer const *, ostream & os,
-                     bool /*fragile*/, bool /*fs*/) const
+std::auto_ptr<InsetBase> InsetHFill::doClone() const
+{
+       return std::auto_ptr<InsetBase>(new InsetHFill);
+}
+
+
+void InsetHFill::metrics(MetricsInfo &, Dimension & dim) const
+{
+       dim.wid = 3;
+       dim.asc = 3;
+       dim.des = 3;
+       dim_ = dim;
+}
+
+
+std::string const InsetHFill::getScreenLabel(Buffer const &) const
+{
+       return getContents();
+}
+
+
+int InsetHFill::latex(Buffer const &, ostream & os,
+                     OutputParams const &) const
 {
        os << getCommand();
        return 0;
 }
 
 
-int InsetHFill::ascii(Buffer const *, ostream & os, int) const
+int InsetHFill::plaintext(Buffer const &, ostream & os,
+                     OutputParams const &) const
 {
        os << '\t';
        return 0;
 }
 
 
-void InsetHFill::write(Buffer const *, ostream & os) const
+int InsetHFill::linuxdoc(Buffer const &, std::ostream & os,
+                        OutputParams const &) const
+{
+       os << '\n';
+       return 0;
+}
+
+
+int InsetHFill::docbook(Buffer const &, std::ostream & os,
+                       OutputParams const &) const
+{
+       os << '\n';
+       return 0;
+}
+
+
+void InsetHFill::write(Buffer const &, ostream & os) const
+{
+       os << "\n\\hfill\n";
+}
+
+
+bool InsetHFill::isSpace() const
 {
-       os << "\n\\hfill \n";
+       return true;
 }