]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetindex.h
insetcharstyle drawing cosmetics
[lyx.git] / src / insets / insetindex.h
index 34a634f143477703365c54d6ed3628f5eb326497..997ec4a76a4551a41b51ec7376f1c2f93129ec9b 100644 (file)
@@ -24,8 +24,6 @@ public:
        ///
        InsetIndex(InsetCommandParams const &);
        ///
-       ~InsetIndex();
-       ///
        virtual std::auto_ptr<InsetBase> clone() const {
                return std::auto_ptr<InsetBase>(new InsetIndex(params()));
        }
@@ -38,9 +36,6 @@ public:
        ///
        int docbook(Buffer const &, std::ostream &,
                    OutputParams const &) const;
-       ///
-       DispatchResult priv_dispatch(FuncRequest const & cmd,
-               idx_type & idx, pos_type & pos);
 };
 
 
@@ -49,8 +44,6 @@ public:
        ///
        InsetPrintIndex(InsetCommandParams const &);
        ///
-       ~InsetPrintIndex();
-       ///
        virtual std::auto_ptr<InsetBase> clone() const {
                return std::auto_ptr<InsetBase>(new InsetPrintIndex(params()));
        }
@@ -64,13 +57,6 @@ public:
        bool display() const { return true; }
        ///
        std::string const getScreenLabel(Buffer const &) const;
-       ///
-       void metrics(MetricsInfo &, Dimension &) const;
-       ///
-       void draw(PainterInfo & pi, int x, int y) const;
-private:
-       ///
-       mutable unsigned int center_indent_;
 };
 
 #endif