]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetlabel.h
insetcharstyle drawing cosmetics
[lyx.git] / src / insets / insetlabel.h
index 805004f0ac00b78a9a552795cf1405338cb59489..3d18632c0de63aa6a41b149179e459778e244a57 100644 (file)
@@ -12,7 +12,6 @@
 #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 std::auto_ptr<InsetBase> clone() const {
-               return std::auto_ptr<InsetBase>(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; }
        ///
        InsetOld::Code lyxCode() const { return InsetOld::LABEL_CODE; }
        /// Appends \c list with this label
-       void getLabelList(Buffer const &, std::vector<string> & list) const;
+       void getLabelList(Buffer const &, std::vector<std::string> & list) const;
        ///
        int latex(Buffer const &, std::ostream &,
-                 LatexRunParams const &) const;
+                 OutputParams 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