X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2FInsetCollapsable.h;h=fda6f84e3c4d2397ca5b2b05c9ad905c69e8c462;hb=a3c84666b2dbfc75c9a80cf4f94612149cb2b570;hp=85ded86eafc081d0441fc39455e2f22be192f4fd;hpb=e33095f10d2289ad9e1faa60baa44edbe61db970;p=lyx.git diff --git a/src/insets/InsetCollapsable.h b/src/insets/InsetCollapsable.h index 85ded86eaf..fda6f84e3c 100644 --- a/src/insets/InsetCollapsable.h +++ b/src/insets/InsetCollapsable.h @@ -14,11 +14,11 @@ #ifndef INSETCOLLAPSABLE_H #define INSETCOLLAPSABLE_H -#include "Inset.h" #include "InsetText.h" #include "Box.h" -#include "TextClass.h" + +#include namespace lyx { @@ -33,10 +33,12 @@ 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; } @@ -66,19 +68,27 @@ 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); /// virtual void setButtonLabel() {} /// - virtual docstring const buttonLabel(BufferView const &) const - { return labelstring_; } + virtual docstring const buttonLabel(BufferView const &) const; /// 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. @@ -119,35 +129,21 @@ public: /// bool getStatus(Cursor &, FuncRequest const &, FuncStatus &) const; /// - void setStatus(Cursor & cur, CollapseStatus st); - /// - bool setMouseHover(bool mouse_hover); + bool setMouseHover(BufferView const * bv, bool mouse_hover) const; /// - ColorCode backgroundColor() const { return getLayout().bgcolor(); } + ColorCode backgroundColor(PainterInfo const &) const + { return getLayout().bgcolor(); } /// ColorCode labelColor() const { return getLayout().labelfont().color(); } /// - int latex(odocstream &, OutputParams const &) const; - /// - int docbook(odocstream &, OutputParams const &) const; - /// It will rarely be right to call this from subclasses, due - /// to the fact that it steps counters, etc. Instead, call - /// InsetText::xhtml(). - docstring xhtml(odocstream &, OutputParams const &) const; - /// - void validate(LaTeXFeatures &) const; - /// InsetCode lyxCode() const { return COLLAPSABLE_CODE; } /// virtual bool usePlainLayout() const { return true; } - /// Is this inset's layout defined in the document's textclass? - /// May be wrong after textclass change or paste from another document - bool undefined() const; - /// the string that is passed to the TOC - void tocString(odocstream &) const; /// virtual docstring contextMenu(BufferView const & bv, int x, int y) const; + /// + docstring floatName(std::string const & type) const; protected: /// void doDispatch(Cursor & cur, FuncRequest & cmd); @@ -157,19 +153,11 @@ protected: /// Inset * editXY(Cursor & cur, int x, int y); /// - docstring floatName(std::string const & type) const; - /// mutable CollapseStatus status_; private: /// Dimension dimensionCollapsed(BufferView const & bv) const; /// - /// should paragraphs be forced to use the empty layout? - virtual bool forcePlainLayout(idx_type = 0) const - { return getLayout().forcePlainLayout(); } - /// should the user be allowed to customize alignment, etc.? - virtual bool allowParagraphCustomization(idx_type = 0) const - { return getLayout().allowParagraphCustomization(); } docstring labelstring_; /// mutable Box button_dim; @@ -179,7 +167,7 @@ private: /// dependent on the bufferview, compare with MathMacro::editing_. mutable std::map auto_open_; /// changes color when mouse enters/leaves this inset - bool mouse_hover_; + mutable std::map mouse_hover_; }; } // namespace lyx