]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetlabel.h
My patch from yesterday
[lyx.git] / src / insets / insetlabel.h
index bf7245493c2b1a47d9b814cce0e16d5f13ae5b89..b4478c3d82c099206c864ddb4536d1a0fbb186f5 100644 (file)
@@ -1,56 +1,53 @@
 // -*- 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-1999 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"
 
-///
-class InsetLabel: public InsetCommand {
+class InsetLabel : public InsetCommand {
 public:
        ///
-       InsetLabel(string const & cmd);
-       ///
-       InsetLabel() : InsetCommand("label") {}
+       InsetLabel(InsetCommandParams const &, bool same_id = false);
        ///
        ~InsetLabel();
        ///
-       Inset * Clone();
+       virtual Inset * clone(Buffer const &, bool same_id = false) const {
+               return new InsetLabel(params(), same_id);
+       }
+       ///
+       virtual dispatch_result localDispatch(FuncRequest const & cmd);
+       ///
+       string const getScreenLabel(Buffer const *) const { return getContents(); }
        ///
-       Inset::Code LyxCode() const { return Inset::LABEL_CODE; }
+       EDITABLE editable() const { return IS_EDITABLE; }
        ///
-       int GetNumberOfLabels() const;
+       Inset::Code lyxCode() const { return Inset::LABEL_CODE; }
        ///
-       string getLabel(int) const;
+       void edit(BufferView *, int, int, mouse_button::state);
        ///
-       string getScreenLabel() const { return getContents(); }
+       void edit(BufferView * bv, bool front = true);
        ///
-       unsigned char Editable() const { return 0; }
+       std::vector<string> const getLabelList() const;
        ///
-       int Latex(FILE * file, signed char fragile);
+       int latex(Buffer const *, std::ostream &,
+                 bool fragile, bool free_spc) const;
        ///
-       int Latex(string & file, signed char fragile);
+       int ascii(Buffer const *, std::ostream &, int linelen) const;
        ///
-       int Linuxdoc(string & file);
+       int linuxdoc(Buffer const *, std::ostream &) const;
        ///
-       int DocBook(string & file);
-private:
-       /// This function escapes 8-bit characters
-       string escape(string const &) const;
+       int docbook(Buffer const *, std::ostream &, bool mixcont) const;
 };
 
 #endif