]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetCaption.h
Fix text frame drawing.
[lyx.git] / src / insets / InsetCaption.h
index 476f11bcca5b98a8846d7a9bfdc6dd7f97a277ca..23d0102a6add7c2aeb2d3c1e8072cea423cc9e2c 100644 (file)
@@ -58,8 +58,8 @@ public:
        bool insetAllowed(Inset::Code code) const;
        ///
        virtual bool getStatus(Cursor & cur, FuncRequest const & cmd, FuncStatus &) const;
-       ///
-       virtual bool wide() const { return false; }
+       // Update the counters of this inset and of its contents
+       virtual void updateLabels(Buffer const &, ParIterator const &);
        ///
        int latex(Buffer const & buf, odocstream & os,
                  OutputParams const &) const;
@@ -76,23 +76,19 @@ 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;
+       virtual Inset * clone() const;
        ///
        mutable docstring full_label_;
        ///
@@ -102,8 +98,6 @@ private:
        ///
        docstring custom_label_;
        ///
-       int counter_;
-       ///
        TextClass const & textclass_;
 };