]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetCaption.h
Fix for bug 4135
[lyx.git] / src / insets / InsetCaption.h
index 9d1973fba67a65de18707ff25922fb1aba4af724..6a9d57e9b513715d280212046a538681fe4f4c94 100644 (file)
@@ -58,25 +58,25 @@ 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; }
        ///
        int latex(Buffer const & buf, odocstream & os,
-                 OutputParams const &) const;
+                 OutputParams const &) const;
        ///
        int plaintext(Buffer const & buf, odocstream & os,
-                     OutputParams const & runparams) const;
+                     OutputParams const & runparams) const;
        ///
        int docbook(Buffer const & buf, odocstream & os,
-                   OutputParams const & runparams) const;
+                   OutputParams const & runparams) const;
        /// return the mandatory argument (LaTeX format) only
        int getArgument(Buffer const & buf, odocstream & os,
-                 OutputParams const &) const;
+                 OutputParams const &) const;
        /// return the optional argument(s) only
        int getOptArg(Buffer const & buf, odocstream & os,
-                 OutputParams const &) const;
-       ///
-       void setCount(int c) { counter_ = c; }
+                 OutputParams const &) const;
        ///
        std::string const & type() const { return type_; }
        ///
@@ -84,13 +84,11 @@ public:
        ///
        void setCustomLabel(docstring const & label);
        ///
-       void addToToc(TocList &, Buffer const &) 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_;
 };