]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetindex.h
The speed patch: redraw only rows that have changed
[lyx.git] / src / insets / insetindex.h
index cef3b995cc1ccb22a5bf1c750a1035a8e469fe41..8dc585a1577ecd60cc231488999efcea4133dc64 100644 (file)
@@ -15,7 +15,7 @@
 
 #include "insetcommand.h"
 
-struct LaTeXFeatures;
+class LaTeXFeatures;
 
 /** Used to insert index labels
   */
@@ -24,21 +24,18 @@ public:
        ///
        InsetIndex(InsetCommandParams const &);
        ///
-       ~InsetIndex();
-       ///
-       virtual std::auto_ptr<InsetBase> clone() const {
-               return std::auto_ptr<InsetBase>(new InsetIndex(params()));
-       }
-       ///
-       dispatch_result localDispatch(FuncRequest const & cmd);
-       ///
-       string const getScreenLabel(Buffer const *) const;
+       std::string const getScreenLabel(Buffer const &) const;
        ///
        EDITABLE editable() const { return IS_EDITABLE; }
        ///
-       InsetOld::Code lyxCode() const;
+       InsetBase::Code lyxCode() const;
        ///
-       int docbook(Buffer const *, std::ostream &, bool mixcont) const;
+       int docbook(Buffer const &, std::ostream &,
+                   OutputParams const &) const;
+private:
+       virtual std::auto_ptr<InsetBase> doClone() const {
+               return std::auto_ptr<InsetBase>(new InsetIndex(params()));
+       }
 };
 
 
@@ -46,31 +43,20 @@ class InsetPrintIndex : public InsetCommand {
 public:
        ///
        InsetPrintIndex(InsetCommandParams const &);
-       ///
-       ~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;
        ///
        EDITABLE editable() const { return NOT_EDITABLE; }
        ///
-       InsetOld::Code lyxCode() const;
-       ///
-       string const getScreenLabel(Buffer const *) const;
+       InsetBase::Code lyxCode() const;
        ///
-       //virtual bool needFullRow() const { return true; }
+       bool display() const { return true; }
        ///
-       void metrics(MetricsInfo &, Dimension &) const; 
-       ///
-       void draw(PainterInfo & pi, int x, int y) const;
+       std::string const getScreenLabel(Buffer const &) const;
 private:
-       ///
-       mutable unsigned int center_indent_;
+       virtual std::auto_ptr<InsetBase> doClone() const {
+               return std::auto_ptr<InsetBase>(new InsetPrintIndex(params()));
+       }
 };
 
 #endif