]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetindex.h
fix #832
[lyx.git] / src / insets / insetindex.h
index ec68765ac03b271b0fe11414cd76c3312274cbdd..79ae38e58d3d2c74c5e8a1b225b45488e8cd6559 100644 (file)
@@ -1,20 +1,17 @@
 // -*- 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
+ * \author Lars Gullik Bjønnes
  *
- *         Copyright 1995 Matthias Ettrich
- *          Copyright 1996-2001 the LyX Team.
- *
- * ====================================================== */
+ * 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"
 
@@ -27,21 +24,21 @@ public:
        ///
        InsetIndex(InsetCommandParams const &, bool same_id = false);
        ///
+       ~InsetIndex();
+       ///
        virtual Inset * clone(Buffer const &, bool same_id = false) const {
                return new InsetIndex(params(), same_id);
        }
        ///
+       dispatch_result localDispatch(FuncRequest const & cmd);
+       ///
        string const getScreenLabel(Buffer const *) const;
        ///
        EDITABLE editable() const { return IS_EDITABLE; }
        ///
-       void edit(BufferView *, int, int, unsigned int);
-       ///
-       void edit(BufferView * bv, bool front = true);
-       ///
        Inset::Code lyxCode() const;
        ///
-       int docbook(Buffer const *, std::ostream &) const;
+       int docbook(Buffer const *, std::ostream &, bool mixcont) const;
 };
 
 
@@ -50,23 +47,25 @@ public:
        ///
        InsetPrintIndex(InsetCommandParams const &, bool same_id = false);
        ///
-       virtual Inset * clone(Buffer const &, bool same_id = false) const {
+       ~InsetPrintIndex();
+       ///
+       Inset * clone(Buffer const &, bool same_id = false) const {
                return new InsetPrintIndex(params(), same_id);
        }
+       ///
+       //dispatch_result localDispatch(FuncRequest const & cmd);
        /// Updates needed features for this inset.
        void validate(LaTeXFeatures & features) const;
        ///
-       void edit(BufferView *, int, int, unsigned int) {}
-       ///
-       void edit(BufferView *, bool = true) {}
-       ///
-       EDITABLE editable() const{ return NOT_EDITABLE; }
+       EDITABLE editable() const { return NOT_EDITABLE; }
        ///
        bool display() const { return true; }
        ///
        Inset::Code lyxCode() const;
        ///
        string const getScreenLabel(Buffer const *) const;
+       ///
+       virtual bool needFullRow() const { return true; }
 };
 
 #endif