]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetlabel.h
* src/LyXAction.C: mark goto-clear-bookmark as working without buffer
[lyx.git] / src / insets / insetlabel.h
index 7425067f5ecb70a179e876336e105101c8848cdc..f02117cbde74fa16a850ba88cc673d17aa170c60 100644 (file)
@@ -6,44 +6,42 @@
  *
  * \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"
 
+
+namespace lyx {
+
 class InsetLabel : public InsetCommand {
 public:
        ///
-       InsetLabel(InsetCommandParams const &, bool same_id = false);
-       ///
-       ~InsetLabel();
-       ///
-       virtual Inset * clone(Buffer const &, bool same_id = false) const {
-               return new InsetLabel(params(), same_id);
-       }
+       InsetLabel(InsetCommandParams const &);
        ///
-       virtual dispatch_result localDispatch(FuncRequest const & cmd);
-       ///
-       string const getScreenLabel(Buffer const *) const { return getContents(); }
+       docstring const getScreenLabel(Buffer const &) const;
        ///
        EDITABLE editable() const { return IS_EDITABLE; }
        ///
-       Inset::Code lyxCode() const { return Inset::LABEL_CODE; }
-       ///
-       std::vector<string> const getLabelList() const;
-       ///
-       int latex(Buffer const *, std::ostream &, LatexRunParams const &,
-                 bool fragile, bool free_spc) const;
+       InsetBase::Code lyxCode() const { return InsetBase::LABEL_CODE; }
+       /// Appends \c list with this label
+       void getLabelList(Buffer const &, std::vector<docstring> & list) const;
        ///
-       int ascii(Buffer const *, std::ostream &, int linelen) const;
+       int latex(Buffer const &, odocstream &, OutputParams const &) const;
        ///
-       int linuxdoc(Buffer const *, std::ostream &) const;
+       int plaintext(Buffer const &, odocstream &, OutputParams const &) const;
        ///
-       int docbook(Buffer const *, std::ostream &, bool mixcont) const;
+       int docbook(Buffer const &, odocstream &, OutputParams const &) const;
+protected:
+       virtual void doDispatch(LCursor & cur, FuncRequest & cmd);
+private:
+       virtual std::auto_ptr<InsetBase> doClone() const;
 };
 
+
+} // namespace lyx
+
 #endif