]> 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 df4e2b5b09b2359a913503e9dd380157b65e88bd..f02117cbde74fa16a850ba88cc673d17aa170c60 100644 (file)
@@ -1,53 +1,47 @@
 // -*- C++ -*-
-/* This file is part of*
- * ======================================================
+/**
+ * \file insetlabel.h
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- *           LyX, The Document Processor
- *      
- *           Copyright 1995 Matthias Ettrich
- *           Copyright 1995-2000 The LyX Team
+ * \author Lars Gullik Bjønnes
  *
- * ====================================================== */
+ * Full author contact details are available in file CREDITS.
+ */
 
 #ifndef INSET_LABEL_H
 #define INSET_LABEL_H
 
-#ifdef __GNUG__
-#pragma interface
-#endif
-
 #include "insetcommand.h"
-#include "LString.h"
 
-///
+
+namespace lyx {
+
 class InsetLabel : public InsetCommand {
 public:
        ///
-       explicit
-       InsetLabel(string const & cmd);
-       ///
-       InsetLabel() : InsetCommand("label") {}
+       InsetLabel(InsetCommandParams const &);
        ///
-       Inset * Clone() const;
+       docstring const getScreenLabel(Buffer const &) const;
        ///
-       Inset::Code LyxCode() const { return Inset::LABEL_CODE; }
+       EDITABLE editable() const { return IS_EDITABLE; }
        ///
-       int GetNumberOfLabels() const;
+       InsetBase::Code lyxCode() const { return InsetBase::LABEL_CODE; }
+       /// Appends \c list with this label
+       void getLabelList(Buffer const &, std::vector<docstring> & list) const;
        ///
-       string getLabel(int) const;
+       int latex(Buffer const &, odocstream &, OutputParams const &) const;
        ///
-       string getScreenLabel() const { return getContents(); }
+       int plaintext(Buffer const &, odocstream &, OutputParams const &) const;
        ///
-       EDITABLE Editable() const { return NOT_EDITABLE; }
-       ///
-       int Latex(std::ostream &, bool fragile, bool free_spc) const;
-       ///
-       int Linuxdoc(std::ostream &) const;
-       ///
-       int DocBook(std::ostream &) const;
+       int docbook(Buffer const &, odocstream &, OutputParams const &) const;
+protected:
+       virtual void doDispatch(LCursor & cur, FuncRequest & cmd);
 private:
-       /// This function escapes 8-bit characters
-       string escape(string const &) const;
+       virtual std::auto_ptr<InsetBase> doClone() const;
 };
 
+
+} // namespace lyx
+
 #endif