]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetlabel.h
insetcharstyle drawing cosmetics
[lyx.git] / src / insets / insetlabel.h
index 10013a0da60eb3706138c7410f3e79025f530222..3d18632c0de63aa6a41b149179e459778e244a57 100644 (file)
@@ -6,13 +6,12 @@
  *
  * \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
 #define INSET_LABEL_H
 
-
 #include "insetcommand.h"
 
 class InsetLabel : public InsetCommand {
@@ -20,30 +19,30 @@ public:
        ///
        InsetLabel(InsetCommandParams const &);
        ///
-       ~InsetLabel();
-       ///
-       virtual Inset * clone() const {
-               return new InsetLabel(params());
-       }
-       ///
-       virtual dispatch_result localDispatch(FuncRequest const & cmd);
+       std::auto_ptr<InsetBase> clone() const;
        ///
-       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 &,
+                 OutputParams const &) const;
        ///
-       int latex(Buffer const *, std::ostream &,
-                 LatexRunParams const &) const;
+       int plaintext(Buffer const &, std::ostream &,
+                 OutputParams const &) const;
        ///
-       int ascii(Buffer const *, std::ostream &, int linelen) const;
+       int linuxdoc(Buffer const &, std::ostream &,
+                    OutputParams const &) const;
        ///
-       int linuxdoc(Buffer const *, std::ostream &) const;
+       int docbook(Buffer const &, std::ostream &,
+                   OutputParams const &) const;
+protected:
        ///
-       int docbook(Buffer const *, std::ostream &, bool mixcont) const;
+       virtual void priv_dispatch(LCursor & cur, FuncRequest & cmd);
 };
 
 #endif