]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetlabel.h
ws changes only
[lyx.git] / src / insets / insetlabel.h
index 6edfda852d9bad4fc292a6981b14c7b8ed677494..c9db1eea302c6ef34df34707cc0932a3d5feb22e 100644 (file)
@@ -6,7 +6,7 @@
  *
  * \author Lars Gullik Bjønnes
  *
- * Full author contact details are available in file CREDITS
+ * Full author contact details are available in file CREDITS.
  */
 
 #ifndef INSET_LABEL_H
@@ -14,6 +14,7 @@
 
 
 #include "insetcommand.h"
+#include <boost/weak_ptr.hpp>
 
 class InsetLabel : public InsetCommand {
 public:
@@ -22,28 +23,26 @@ public:
        ///
        ~InsetLabel();
        ///
-       virtual Inset * clone(Buffer const &) const {
-               return new InsetLabel(params());
-       }
+       std::auto_ptr<InsetBase> clone() const;
        ///
        virtual dispatch_result localDispatch(FuncRequest const & cmd);
        ///
-       string const getScreenLabel(Buffer const *) const { return getContents(); }
+       std::string const getScreenLabel(Buffer const &) const;
        ///
        EDITABLE editable() const { return IS_EDITABLE; }
        ///
-       Inset::Code lyxCode() const { return Inset::LABEL_CODE; }
+       InsetOld::Code lyxCode() const { return InsetOld::LABEL_CODE; }
+       /// Appends \c list with this label
+       void getLabelList(Buffer const &, std::vector<std::string> & list) const;
        ///
-       std::vector<string> const getLabelList() const;
-       ///
-       int latex(Buffer const *, std::ostream &,
+       int latex(Buffer const &, std::ostream &,
                  LatexRunParams const &) const;
        ///
-       int ascii(Buffer const *, std::ostream &, int linelen) const;
+       int ascii(Buffer const &, std::ostream &, int linelen) const;
        ///
-       int linuxdoc(Buffer const *, std::ostream &) const;
+       int linuxdoc(Buffer const &, std::ostream &) const;
        ///
-       int docbook(Buffer const *, std::ostream &, bool mixcont) const;
+       int docbook(Buffer const &, std::ostream &, bool mixcont) const;
 };
 
 #endif