]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetCollapsable.h
#7379 avoid the wrap spell check question when buffer is empty
[lyx.git] / src / insets / InsetCollapsable.h
index 221795dd3b8ee336c4121d953c079b52f25f9460..4008cee7425662bd7daab785f914de998c5d13ef 100644 (file)
 #ifndef INSETCOLLAPSABLE_H
 #define INSETCOLLAPSABLE_H
 
-#include "Inset.h"
 #include "InsetText.h"
 
 #include "Box.h"
-#include "TextClass.h"
+
+#include <map>
 
 namespace lyx {
 
@@ -37,6 +37,8 @@ public:
        ///
        InsetCollapsable(InsetCollapsable const & rhs);
        ///
+       virtual ~InsetCollapsable();
+       ///
        InsetCollapsable * asInsetCollapsable() { return this; }
        ///
        InsetCollapsable const * asInsetCollapsable() const { return this; }
@@ -66,6 +68,8 @@ 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(BufferView const & bv) const;
        ///
@@ -125,7 +129,7 @@ public:
        ///
        bool getStatus(Cursor &, FuncRequest const &, FuncStatus &) const;
        ///
-       bool setMouseHover(bool mouse_hover);
+       bool setMouseHover(BufferView const * bv, bool mouse_hover) const;
        ///
        ColorCode backgroundColor(PainterInfo const &) const
                { return getLayout().bgcolor(); }
@@ -137,7 +141,9 @@ public:
        ///
        virtual bool usePlainLayout() const { return true; }
        ///
-       virtual docstring contextMenu(BufferView const & bv, int x, int y) const;
+       docstring contextMenu(BufferView const & bv, int x, int y) const;
+       ///
+       docstring contextMenuName() const;
        ///
        docstring floatName(std::string const & type) const;
 protected:
@@ -163,7 +169,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