X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2FInsetCollapsable.h;h=d7d050e3fea9a44aba29ea8d1b5b28026714f58d;hb=3588f2f69675df8dbf829800b0ed6e4a455c68b4;hp=1ef00985b81d27b1ba497e8a6c3bc8d76f5a8f04;hpb=45312b5f491734c5f35b920ed5e88bdd1ee7fa33;p=lyx.git diff --git a/src/insets/InsetCollapsable.h b/src/insets/InsetCollapsable.h index 1ef00985b8..d7d050e3fe 100644 --- a/src/insets/InsetCollapsable.h +++ b/src/insets/InsetCollapsable.h @@ -5,8 +5,8 @@ * Licence details can be found in the file COPYING. * * \author Alejandro Aguilar Sierra - * \author Jürgen Vigna - * \author Lars Gullik Bjønnes + * \author Jürgen Vigna + * \author Lars Gullik Bjønnes * * Full author contact details are available in file CREDITS. */ @@ -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,28 +33,19 @@ namespace frontend { class Painter; } class InsetCollapsable : public InsetText { public: /// - InsetCollapsable(Buffer const &, CollapseStatus status = Inset::Open); + 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"); } - /// - InsetLayout const & getLayout(BufferParams const &) const { return *layout_; } - /// - InsetLayout const & getLayout() const { return *layout_; } - /// - void setLayout(BufferParams const &); - /// (Re-)set the character style parameters from \p tc according - /// to name() - void setLayout(DocumentClass const * const tc); - /// - virtual bool usePlainLayout() { return true; } + docstring layoutName() const { return from_ascii("Collapsable"); } /// void read(Lexer &); /// @@ -66,8 +57,7 @@ public: /// return x,y of given position relative to the inset's baseline void cursorPos(BufferView const & bv, CursorSlice const & sl, - /// - bool boundary, int & x, int & y) const; + bool boundary, int & x, int & y) const; /// Returns true if (mouse) action is over the inset's button. /// Always returns false when the inset does not have a /// button. @@ -75,17 +65,31 @@ public: /// docstring const getNewLabel(docstring const & l) const; /// - EDITABLE editable() const; + 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() {} /// - bool isOpen() const { return geometry() != ButtonOnly; } + virtual docstring const buttonLabel(BufferView const &) const; + /// + bool isOpen(BufferView const & bv) const + { return geometry(bv) != ButtonOnly; } + /// + enum CollapseStatus { + Collapsed, + Open + }; /// - CollapseStatus status() const; + 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. * We define a list of possible inset decoration @@ -102,7 +106,7 @@ public: * Conglomerate | SubLabel Corners * --------------------------------------------- * *) toggled by openinlined_ - * x) toggled by autoOpen_ + * x) toggled by auto_open_ */ /// Default looks @@ -117,41 +121,31 @@ public: Corners }; /// Returns the geometry based on CollapseStatus - /// (status_), autoOpen_ and openinlined_, and of - /// course decoration(). + /// (status_), auto_open_[BufferView] and openinlined_, + /// and of course decoration(). + Geometry geometry(BufferView const & bv) const; + /// Returns the geometry disregarding auto_open_ Geometry geometry() const; - /// Allow spellchecking, except for insets with latex_language - bool allowSpellCheck() const { return !forceLTR(); } - /// - bool allowMultiPar() const; /// 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 layout_->bgcolor(); } + ColorCode backgroundColor(PainterInfo const &) const + { return getLayout().bgcolor(); } /// - int latex(odocstream &, OutputParams const &) const; - /// - void validate(LaTeXFeatures &) const; + ColorCode labelColor() const { return getLayout().labelfont().color(); } /// InsetCode lyxCode() const { return COLLAPSABLE_CODE; } - /// Allow multiple blanks - virtual bool isFreeSpacing() const { return layout_->isFreeSpacing(); } - /// Don't eliminate empty paragraphs - virtual bool allowEmpty() const { return layout_->isKeepEmpty(); } - /// Force inset into LTR environment if surroundings are RTL? - virtual bool forceLTR() const { return layout_->isForceLtr(); } /// 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; /// - 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); @@ -161,27 +155,21 @@ protected: /// Inset * editXY(Cursor & cur, int x, int y); /// - docstring floatName(std::string const & type, BufferParams const &) const; - /// - virtual void resetParagraphsFont(); - + mutable CollapseStatus status_; private: - /// cache for the layout_. Make sure it is in sync with the document class! - InsetLayout const * layout_; /// - Dimension dimensionCollapsed() const; + Dimension dimensionCollapsed(BufferView const & bv) const; /// docstring labelstring_; /// mutable Box button_dim; - /// - mutable CollapseStatus status_; /// a substatus of the Open status, determined automatically in metrics mutable bool openinlined_; - /// the inset will automatically open when the cursor is inside - mutable bool autoOpen_; + /// the inset will automatically open when the cursor is inside. This is + /// 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