]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetCollapsable.h
Reduce caption hardcoding
[lyx.git] / src / insets / InsetCollapsable.h
index d692ce91c984684c3ed0c11d9d1275b2da58d8e1..1c990f93c88c4c2103ac5695f97a4a0a102d59fc 100644 (file)
 #ifndef INSETCOLLAPSABLE_H
 #define INSETCOLLAPSABLE_H
 
-#include "Inset.h"
 #include "InsetText.h"
 
 #include "Box.h"
-#include "TextClass.h"
+
+#include <map>
 
 namespace lyx {
 
@@ -33,17 +33,19 @@ namespace frontend { class Painter; }
 class InsetCollapsable : public InsetText {
 public:
        ///
-       InsetCollapsable(Buffer const &, InsetText::UsePlain = InsetText::PlainLayout);
+       InsetCollapsable(Buffer *, InsetText::UsePlain = InsetText::PlainLayout);
        ///
        InsetCollapsable(InsetCollapsable const & rhs);
        ///
+       virtual ~InsetCollapsable();
+       ///
        InsetCollapsable * asInsetCollapsable() { return this; }
        ///
        InsetCollapsable const * asInsetCollapsable() const { return this; }
        ///
        docstring toolTip(BufferView const & bv, int x, int y) const;
        ///
-       docstring name() const { return from_ascii("Collapsable"); }
+       docstring layoutName() const { return from_ascii("Collapsable"); }
        ///
        void read(Lexer &);
        ///
@@ -66,8 +68,10 @@ public:
        bool editable() const;
        ///
        bool hasSettings() const { return true; }
+       ///
+       bool clickable(int x, int y) const;
        /// can we go further down on mouse click?
-       bool descendable() const;
+       bool descendable(BufferView const & bv) const;
        ///
        void setLabel(docstring const & l);
        ///
@@ -78,6 +82,13 @@ public:
        bool isOpen(BufferView const & bv) const 
                { return geometry(bv) != ButtonOnly; }
        ///
+       enum CollapseStatus {
+               Collapsed,
+               Open
+       };
+       ///
+       virtual void setStatus(Cursor & cur, CollapseStatus st);
+       ///
        CollapseStatus status(BufferView const & bv) const;
        /** Of the old CollapseStatus we only keep the values  
         *  Open and Collapsed.
@@ -100,6 +111,10 @@ public:
 
        /// Default looks
        virtual InsetLayout::InsetDecoration decoration() const;
+       /// Inset font
+       virtual FontInfo getFont() const { return getLayout().font(); }
+       /// Label font
+       virtual FontInfo getLabelfont() const { return getLayout().labelfont(); }
        ///
        enum Geometry {
                TopButton,
@@ -118,11 +133,10 @@ public:
        ///
        bool getStatus(Cursor &, FuncRequest const &, FuncStatus &) const;
        ///
-       void setStatus(Cursor & cur, CollapseStatus st);
+       bool setMouseHover(BufferView const * bv, bool mouse_hover) const;
        ///
-       bool setMouseHover(bool mouse_hover);
-       ///
-       ColorCode backgroundColor() const { return getLayout().bgcolor(); }
+       ColorCode backgroundColor(PainterInfo const &) const
+               { return getLayout().bgcolor(); }
        ///
        ColorCode labelColor() const { return getLayout().labelfont().color(); }
        ///
@@ -131,7 +145,11 @@ public:
        ///
        virtual bool usePlainLayout() const { return true; }
        ///
-       virtual docstring contextMenu(BufferView const & bv, int x, int y) const;
+       std::string contextMenu(BufferView const & bv, int x, int y) const;
+       ///
+       std::string contextMenuName() const;
+       ///
+       docstring floatName(std::string const & type) const;
 protected:
        ///
        void doDispatch(Cursor & cur, FuncRequest & cmd);
@@ -141,8 +159,6 @@ protected:
        ///
        Inset * editXY(Cursor & cur, int x, int y);
        ///
-       docstring floatName(std::string const & type) const;
-       ///
        mutable CollapseStatus status_;
 private:
        ///
@@ -157,7 +173,7 @@ private:
        /// dependent on the bufferview, compare with MathMacro::editing_.
        mutable std::map<BufferView const *, bool> auto_open_;
        /// changes color when mouse enters/leaves this inset
-       bool mouse_hover_;
+       mutable std::map<BufferView const *, bool> mouse_hover_;
 };
 
 } // namespace lyx