X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2FInsetCollapsable.h;h=fda6f84e3c4d2397ca5b2b05c9ad905c69e8c462;hb=a3c84666b2dbfc75c9a80cf4f94612149cb2b570;hp=c14cadfc738d6ed18b748e63e88f671133083f31;hpb=32871c1284f15265f652ff01c438e539a7c8181f;p=lyx.git diff --git a/src/insets/InsetCollapsable.h b/src/insets/InsetCollapsable.h index c14cadfc73..fda6f84e3c 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,19 +14,16 @@ #ifndef INSETCOLLAPSABLE_H #define INSETCOLLAPSABLE_H -#include "Inset.h" #include "InsetText.h" #include "Box.h" -#include "LyXFont.h" -#include +#include namespace lyx { -class LyXText; -class Paragraph; class CursorSlice; +class InsetLayout; namespace frontend { class Painter; } @@ -36,100 +33,143 @@ namespace frontend { class Painter; } class InsetCollapsable : public InsetText { public: /// - static int const TEXT_TO_TOP_OFFSET = 2; + InsetCollapsable(Buffer *, InsetText::UsePlain = InsetText::PlainLayout); /// - static int const TEXT_TO_BOTTOM_OFFSET = 2; + InsetCollapsable(InsetCollapsable const & rhs); /// - InsetCollapsable(BufferParams const &, CollapseStatus status = Open); + virtual ~InsetCollapsable(); /// - InsetCollapsable(InsetCollapsable const & rhs); + InsetCollapsable * asInsetCollapsable() { return this; } /// - docstring insetName() const { return from_ascii("Collapsable"); } + InsetCollapsable const * asInsetCollapsable() const { return this; } /// - void read(Buffer const &, Lexer &); + docstring toolTip(BufferView const & bv, int x, int y) const; /// - void write(Buffer const &, std::ostream &) const; + docstring name() const { return from_ascii("Collapsable"); } /// - bool metrics(MetricsInfo &, Dimension &) const; + void read(Lexer &); /// - void draw(PainterInfo & pi, int x, int y) const; + void write(std::ostream &) const; + /// + void metrics(MetricsInfo &, Dimension &) const; /// - void drawSelection(PainterInfo & pi, int x, int y) const; + void draw(PainterInfo & pi, int x, int y) const; + /// 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; - /// + /// Returns true if (mouse) action is over the inset's button. + /// Always returns false when the inset does not have a + /// button. bool hitButton(FuncRequest const &) const; /// 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() {} /// - void setLabelFont(LyXFont & f); - /// - bool isOpen() const { return status_ == Open || status_ == Inlined; } - /// - bool inlined() const { return status_ == Inlined; } + 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. + * We define a list of possible inset decoration + * styles, and a list of possible (concrete, visual) + * inset geometries. Relationships between them + * (geometries in body of table): + * + * \ CollapseStatus: + * Decoration: \ Open Collapsed + * -------------+------------------------------- + * Classic | *) TopButton, <--x) ButtonOnly + * | LeftButton + * Minimalistic | NoButton ButtonOnly + * Conglomerate | SubLabel Corners + * --------------------------------------------- + * *) toggled by openinlined_ + * x) toggled by auto_open_ + */ + + /// Default looks + virtual InsetLayout::InsetDecoration decoration() const; + /// + enum Geometry { + TopButton, + ButtonOnly, + NoButton, + LeftButton, + SubLabel, + Corners + }; + /// Returns the geometry based on CollapseStatus + /// (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; /// - CollapseStatus status() const; + bool getStatus(Cursor &, FuncRequest const &, FuncStatus &) const; /// - bool allowSpellCheck() const { return true; } + bool setMouseHover(BufferView const * bv, bool mouse_hover) const; /// - bool getStatus(Cursor &, FuncRequest const &, FuncStatus &) const; + ColorCode backgroundColor(PainterInfo const &) const + { return getLayout().bgcolor(); } /// - void setStatus(Cursor & cur, CollapseStatus st); + ColorCode labelColor() const { return getLayout().labelfont().color(); } /// - bool setMouseHover(bool mouse_hover); + InsetCode lyxCode() const { return COLLAPSABLE_CODE; } -protected: /// - virtual void doDispatch(Cursor & cur, FuncRequest & cmd); + virtual bool usePlainLayout() const { return true; } /// - Dimension dimensionCollapsed() const; + virtual docstring contextMenu(BufferView const & bv, int x, int y) const; /// - Box const & buttonDim() const; + docstring floatName(std::string const & type) const; +protected: + /// + void doDispatch(Cursor & cur, FuncRequest & cmd); /// - void edit(Cursor & cur, bool left); + void edit(Cursor & cur, bool front, + EntryDirection entry_from = ENTRY_DIRECTION_IGNORE); /// Inset * editXY(Cursor & cur, int x, int y); /// - void setInlined() { status_ = Inlined; } + mutable CollapseStatus status_; +private: /// - docstring floatName(std::string const & type, BufferParams const &) const; - -protected: + Dimension dimensionCollapsed(BufferView const & bv) const; /// - LyXFont labelfont_; + docstring labelstring_; /// mutable Box button_dim; - /// - mutable int topx; - /// - mutable int topbaseline; - /// - mutable docstring label; -private: - /// - 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_; - /// - mutable Dimension textdim_; + /// 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_; }; -// A helper function that pushes the cursor out of the inset. -void leaveInset(Cursor & cur, Inset const & in); - } // namespace lyx #endif