]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetindex.h
insetcharstyle drawing cosmetics
[lyx.git] / src / insets / insetindex.h
index 5182e5684c564cd81cb2598ed1143e56d52cf133..997ec4a76a4551a41b51ec7376f1c2f93129ec9b 100644 (file)
@@ -1,68 +1,62 @@
 // -*- C++ -*-
-/* This file is part of*
- * ====================================================== 
+/**
+ * \file insetindex.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 1996-2001 the LyX Team.
- * 
- * ====================================================== */
+ * \author Lars Gullik Bjønnes
+ *
+ * Full author contact details are available in file CREDITS.
+ */
 
 #ifndef INSET_INDEX_H
 #define INSET_INDEX_H
 
-#ifdef __GNUG__
-#pragma interface
-#endif
 
 #include "insetcommand.h"
 
 struct LaTeXFeatures;
 
-/** Used to insert index labels  
+/** Used to insert index labels
   */
 class InsetIndex : public InsetCommand {
 public:
        ///
-       InsetIndex(InsetCommandParams const &, bool same_id = false);
+       InsetIndex(InsetCommandParams const &);
        ///
-       virtual Inset * clone(Buffer const &, bool same_id = false) const {
-               return new InsetIndex(params(), same_id);
+       virtual std::auto_ptr<InsetBase> clone() const {
+               return std::auto_ptr<InsetBase>(new InsetIndex(params()));
        }
        ///
-       string const getScreenLabel() const;
+       std::string const getScreenLabel(Buffer const &) const;
        ///
        EDITABLE editable() const { return IS_EDITABLE; }
        ///
-       void edit(BufferView *, int, int, unsigned int);
+       InsetOld::Code lyxCode() const;
        ///
-       void edit(BufferView * bv, bool front = true);
+       int docbook(Buffer const &, std::ostream &,
+                   OutputParams const &) const;
 };
 
 
 class InsetPrintIndex : public InsetCommand {
 public:
        ///
-       InsetPrintIndex(InsetCommandParams const &, bool same_id = false);
+       InsetPrintIndex(InsetCommandParams const &);
        ///
-       virtual Inset * clone(Buffer const &, bool same_id = false) const {
-               return new InsetPrintIndex(params(), same_id);
+       virtual std::auto_ptr<InsetBase> clone() const {
+               return std::auto_ptr<InsetBase>(new InsetPrintIndex(params()));
        }
        /// Updates needed features for this inset.
        void validate(LaTeXFeatures & features) const;
        ///
-       void edit(BufferView *, int, int, unsigned int) {}
+       EDITABLE editable() const { return NOT_EDITABLE; }
        ///
-       void edit(BufferView * bv, bool front = true) {}
-       ///
-       EDITABLE editable() const{ return NOT_EDITABLE; }
+       InsetOld::Code lyxCode() const;
        ///
        bool display() const { return true; }
        ///
-       Inset::Code lyxCode() const;
-       ///
-       string const getScreenLabel() const;
+       std::string const getScreenLabel(Buffer const &) const;
 };
 
 #endif