]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetCaption.h
Embedding: display a pin at the top left corner of embedded figures
[lyx.git] / src / insets / InsetCaption.h
index 476f11bcca5b98a8846d7a9bfdc6dd7f97a277ca..804a40a6d72b27f581a5df643ebd6df3845a8899 100644 (file)
 #define INSETCAPTION_H
 
 #include "InsetText.h"
-#include "TextClass.h"
-
 
 namespace lyx {
 
+class TextClass;
+
 /** A caption inset
 */
 class InsetCaption : public InsetText {
@@ -36,7 +36,7 @@ public:
        ///
        virtual bool neverIndent(Buffer const &) const { return true; }
        ///
-       virtual Inset::Code lyxCode() const;
+       virtual InsetCode lyxCode() const;
        ///
        virtual docstring const editMessage() const;
        ///
@@ -45,21 +45,19 @@ public:
        ///
        bool descendable() const { return true; }
        ///
-       virtual bool metrics(MetricsInfo & mi, Dimension & dim) const;
+       virtual void metrics(MetricsInfo & mi, Dimension & dim) const;
        ///
        virtual void draw(PainterInfo & pi, int x, int y) const;
        ///
-       void drawSelection(PainterInfo & pi, int x, int y) const;
-       ///
        virtual void edit(Cursor & cur, bool left);
        ///
        virtual Inset * editXY(Cursor & cur, int x, int y);
        ///
-       bool insetAllowed(Inset::Code code) const;
+       bool insetAllowed(InsetCode 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 +74,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 +96,6 @@ private:
        ///
        docstring custom_label_;
        ///
-       int counter_;
-       ///
        TextClass const & textclass_;
 };
 
@@ -116,7 +108,7 @@ Inset::DisplayType InsetCaption::display() const
 
 
 inline
-Inset::Code InsetCaption::lyxCode() const
+InsetCode InsetCaption::lyxCode() const
 {
        return CAPTION_CODE;
 }