]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetlabel.h
Don't remove cell selections after fontchange.
[lyx.git] / src / insets / insetlabel.h
index 71aae7729d43234125175bfb8f5e3ba2b4671e35..06aaa043b86b5b0011a503148861e288d8e0494d 100644 (file)
@@ -5,7 +5,7 @@
  *           LyX, The Document Processor
  *      
  *           Copyright 1995 Matthias Ettrich
- *           Copyright 1995-1999 The LyX Team
+ *           Copyright 1995-2001 The LyX Team
  *
  * ====================================================== */
 
 #endif
 
 #include "insetcommand.h"
-#include "LString.h"
 
-///
 class InsetLabel : public InsetCommand {
 public:
        ///
-       InsetLabel(string const & cmd);
+       InsetLabel(InsetCommandParams const &, bool same_id = false);
        ///
-       InsetLabel() : InsetCommand("label") {}
+       virtual Inset * clone(Buffer const &, bool same_id = false) const {
+               return new InsetLabel(params(), same_id);
+       }
        ///
-       Inset * Clone() const;
+       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, unsigned int);
        ///
-       string getScreenLabel() const { return getContents(); }
+       void edit(BufferView * bv, bool front = true);
        ///
-       EDITABLE Editable() const { return NOT_EDITABLE; }
+       std::vector<string> const getLabelList() const;
        ///
-       int Latex(ostream &, signed char fragile, bool free_spc) const;
-#ifndef USE_OSTREAM_ONLY
+       int latex(Buffer const *, std::ostream &,
+                 bool fragile, bool free_spc) const;
        ///
-       int Latex(string & file, signed char fragile, bool free_spc) const;
+       int ascii(Buffer const *, std::ostream &, int linelen) const;
        ///
-       int Linuxdoc(string & file) const;
+       int linuxdoc(Buffer const *, std::ostream &) const;
        ///
-       int DocBook(string & file) const;
-#else
-       ///
-       int Linuxdoc(ostream &) const;
-       ///
-       int DocBook(ostream &) const;
-#endif
-private:
-       /// This function escapes 8-bit characters
-       string escape(string const &) const;
+       int docbook(Buffer const *, std::ostream &) const;
 };
 
 #endif