]> 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 3c82615e827a468ec6c85cbc0effe5a931ddff71..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,7 +45,7 @@ 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;
        ///
@@ -53,7 +53,7 @@ public:
        ///
        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;
        // Update the counters of this inset and of its contents
@@ -108,7 +108,7 @@ Inset::DisplayType InsetCaption::display() const
 
 
 inline
-Inset::Code InsetCaption::lyxCode() const
+InsetCode InsetCaption::lyxCode() const
 {
        return CAPTION_CODE;
 }