]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetindex.h
Clean up InsetGraphics::Cache and rename as GraphicsInset.
[lyx.git] / src / insets / insetindex.h
index b92853804f179ecd8d5c94b0e4dd65d2c2f406df..e3b4caa7fbf89e5703ba13c3b1b468513ab3585f 100644 (file)
@@ -1,61 +1,71 @@
 // -*- 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-2000 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"
-#include "support/utility.hpp"
 
 struct LaTeXFeatures;
 
-/** Used to insert index labels  
+/** Used to insert index labels
   */
-class InsetIndex : public InsetCommand, public noncopyable {
+class InsetIndex : public InsetCommand {
 public:
        ///
        InsetIndex(InsetCommandParams const &);
        ///
-       Inset * Clone() const { return new InsetIndex(params());}
+       ~InsetIndex();
+       ///
+       virtual Inset * clone() const {
+               return new InsetIndex(params());
+       }
+       ///
+       dispatch_result localDispatch(FuncRequest const & cmd);
+       ///
+       string const getScreenLabel(Buffer const *) const;
        ///
-       string getScreenLabel() const;
+       EDITABLE editable() const { return IS_EDITABLE; }
        ///
-       EDITABLE Editable() const { return IS_EDITABLE; }
+       Inset::Code lyxCode() const;
        ///
-       void Edit(BufferView *, int, int, unsigned int);
+       int docbook(Buffer const *, std::ostream &, bool mixcont) const;
 };
 
 
-class InsetPrintIndex : public InsetCommand, public noncopyable {
+class InsetPrintIndex : public InsetCommand {
 public:
        ///
        InsetPrintIndex(InsetCommandParams const &);
        ///
-       Inset * Clone() const { return new InsetPrintIndex(params());}
-       /// Updates needed features for this inset.
-       void Validate(LaTeXFeatures & features) const;
+       ~InsetPrintIndex();
+       ///
+       Inset * clone() const {
+               return new InsetPrintIndex(params());
+       }
        ///
-       void Edit(BufferView *, int, int, unsigned int) {}
+       //dispatch_result localDispatch(FuncRequest const & cmd);
+       /// Updates needed features for this inset.
+       void validate(LaTeXFeatures & features) const;
        ///
-       EDITABLE Editable() const{ return NOT_EDITABLE; }
+       EDITABLE editable() const { return NOT_EDITABLE; }
        ///
        bool display() const { return true; }
        ///
-       Inset::Code LyxCode() const;
+       Inset::Code lyxCode() const;
+       ///
+       string const getScreenLabel(Buffer const *) const;
        ///
-       string getScreenLabel() const;
+       virtual bool needFullRow() const { return true; }
 };
 
 #endif