]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetindex.h
Enable convertDefault.sh to run even if its executable bit is not set.
[lyx.git] / src / insets / insetindex.h
index 4303466789f78b4d636ef127373c9f95e68d66ab..4676ac8b24e09a5e212309cb75911f1f663bcdba 100644 (file)
@@ -6,15 +6,12 @@
  *
  * \author Lars Gullik Bjønnes
  *
- * Full author contact details are available in file CREDITS
+ * 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"
 
@@ -25,50 +22,53 @@ struct LaTeXFeatures;
 class InsetIndex : public InsetCommand {
 public:
        ///
-       InsetIndex(InsetCommandParams const &, bool same_id = false);
+       InsetIndex(InsetCommandParams const &);
+       ///
+       ~InsetIndex();
        ///
-       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(Buffer const *) const;
+       dispatch_result localDispatch(FuncRequest const & cmd);
        ///
-       EDITABLE editable() const { return IS_EDITABLE; }
+       string const getScreenLabel(Buffer const &) const;
        ///
-       void edit(BufferView *, int, int, mouse_button::state);
-       ///
-       void edit(BufferView * bv, bool front = true);
+       EDITABLE editable() const { return IS_EDITABLE; }
        ///
-       Inset::Code lyxCode() const;
+       InsetOld::Code lyxCode() const;
        ///
-       int docbook(Buffer const *, std::ostream &, bool mixcont) const;
+       int docbook(Buffer const &, std::ostream &, bool mixcont) 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);
+       ~InsetPrintIndex();
+       ///
+       virtual std::auto_ptr<InsetBase> clone() const {
+               return std::auto_ptr<InsetBase>(new InsetPrintIndex(params()));
        }
+       ///
+       //dispatch_result localDispatch(FuncRequest const & cmd);
        /// Updates needed features for this inset.
        void validate(LaTeXFeatures & features) const;
        ///
-       void edit(BufferView *, int, int, mouse_button::state) {}
-       ///
-       void edit(BufferView *, bool = true) {}
-       ///
        EDITABLE editable() const { return NOT_EDITABLE; }
        ///
-       bool display() const { return true; }
+       InsetOld::Code lyxCode() const;
+       ///
+       string const getScreenLabel(Buffer const &) const;
        ///
-       Inset::Code lyxCode() const;
+       void metrics(MetricsInfo &, Dimension &) const; 
        ///
-       string const getScreenLabel(Buffer const *) const;
+       void draw(PainterInfo & pi, int x, int y) const;
+private:
        ///
-       virtual bool needFullRow() const { return true; }
+       mutable unsigned int center_indent_;
 };
 
 #endif