]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetCaption.h
Fix for bug 4135
[lyx.git] / src / insets / InsetCaption.h
index 476f11bcca5b98a8846d7a9bfdc6dd7f97a277ca..6a9d57e9b513715d280212046a538681fe4f4c94 100644 (file)
@@ -58,6 +58,8 @@ public:
        bool insetAllowed(Inset::Code code) const;
        ///
        virtual bool getStatus(Cursor & cur, FuncRequest const & cmd, FuncStatus &) const;
+       // Update the counters of this inset and of its contents
+       virtual void updateLabels(Buffer const &, ParIterator const &);
        ///
        virtual bool wide() const { return false; }
        ///
@@ -76,21 +78,17 @@ public:
        int getOptArg(Buffer const & buf, odocstream & os,
                  OutputParams const &) const;
        ///
-       void setCount(int c) { counter_ = c; }
-       ///
        std::string const & type() const { return type_; }
        ///
        void setType(std::string const & type) { type_ = type; }
        ///
        void setCustomLabel(docstring const & label);
        ///
-       void addToToc(TocList &, Buffer const &, ParConstIterator &) const;
+       void addToToc(TocList &, Buffer const &, ParConstIterator const &) const;
        /// Captions don't accept alignment, spacing, etc.
        bool forceDefaultParagraphs(idx_type) const { return true; }
 
 private:
-       ///
-       void computeFullLabel(Buffer const & buf) const;
        ///
        virtual std::auto_ptr<Inset> doClone() const;
        ///
@@ -102,8 +100,6 @@ private:
        ///
        docstring custom_label_;
        ///
-       int counter_;
-       ///
        TextClass const & textclass_;
 };