X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2FInsetCollapsable.h;h=c7b6d65c3a4f193454ba8bc1dcd73d3a9d4ae19c;hb=e4c46abeb7385960c9dd42494e3c7c1f3e699b56;hp=df406e26ef0a1527639cad917e369da0477b28a3;hpb=12a3c703d16d64c5897c228dadc3cb179eafdf87;p=lyx.git diff --git a/src/insets/InsetCollapsable.h b/src/insets/InsetCollapsable.h index df406e26ef..c7b6d65c3a 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,21 +14,16 @@ #ifndef INSETCOLLAPSABLE_H #define INSETCOLLAPSABLE_H -#include "Inset.h" #include "InsetText.h" -#include "TextClass.h" #include "Box.h" -#include +#include namespace lyx { class CursorSlice; -class FontInfo; class InsetLayout; -class Paragraph; -class Text; namespace frontend { class Painter; } @@ -38,46 +33,64 @@ namespace frontend { class Painter; } class InsetCollapsable : public InsetText { public: /// - InsetCollapsable(BufferParams const &, CollapseStatus status = Inset::Open); + InsetCollapsable(Buffer *, InsetText::UsePlain = InsetText::PlainLayout); /// InsetCollapsable(InsetCollapsable const & rhs); /// - docstring name() const { return from_ascii("Collapsable"); } + virtual ~InsetCollapsable(); /// - void setLayout(BufferParams const &); + InsetCollapsable * asInsetCollapsable() { return this; } /// - void read(Buffer const &, Lexer &); + InsetCollapsable const * asInsetCollapsable() const { return this; } /// - void write(Buffer const &, std::ostream &) const; + docstring toolTip(BufferView const & bv, int x, int y) const; + /// + docstring layoutName() const { return from_ascii("Collapsable"); } + /// + void read(Lexer &); + /// + void write(std::ostream &) const; /// void metrics(MetricsInfo &, Dimension &) const; /// void draw(PainterInfo & pi, int x, int y) const; + /// + virtual void drawBackground(PainterInfo &, int, int) 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; /// - bool hitButton(FuncRequest const &) const; - /// docstring const getNewLabel(docstring const & l) const; /// - EDITABLE editable() const; + bool editable() const; + /// + bool hasSettings() const { return true; } + /// Returns true if coordinates are over the inset's button. + /// Always returns false when the inset does not have a + /// button. + bool clickable(BufferView const & bv, 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(FontInfo const & f); + virtual docstring const buttonLabel(BufferView const &) const; /// - void setLabelColor(ColorCode code); + bool isOpen(BufferView const & bv) const + { return geometry(bv) != ButtonOnly; } + /// + enum CollapseStatus { + Collapsed, + Open + }; /// - bool isOpen() const { return geometry() != ButtonOnly; } + virtual void setStatus(Cursor & cur, CollapseStatus st); /// - CollapseStatus status() const; - /** Of the old CollapseStatus we only keep the values + 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) @@ -89,21 +102,19 @@ public: * -------------+------------------------------- * Classic | *) TopButton, <--x) ButtonOnly * | LeftButton - * Minimalistic | ButtonOnly NoButton + * Minimalistic | NoButton ButtonOnly * Conglomerate | SubLabel Corners * --------------------------------------------- * *) toggled by openinlined_ - * x) toggled by autoOpen_ + * x) toggled by auto_open_ */ - /// - enum Decoration { - Classic, - Minimalistic, - Conglomerate - }; /// Default looks - virtual Decoration decoration() const; + 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, @@ -114,76 +125,62 @@ public: Corners }; /// Returns the geometry based on CollapseStatus - /// (status_), autoOpen_ and openinlined_, and of - /// course decoration(). - Geometry geometry() const; + /// (status_), auto_open_[BufferView] and openinlined_, + /// and of course decoration(). + Geometry geometry(BufferView const & bv) const; /// - bool allowSpellCheck() const { return true; } - /// - bool allowMultiPar() const; + bool canPaintChange(BufferView const & bv) const; /// 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(PainterInfo const &) const + { return getLayout().bgcolor(); } /// - virtual ColorCode backgroundColor() const {return layout_.bgcolor; } - - int latex(Buffer const &, odocstream &, - OutputParams const &) const; + ColorCode labelColor() const { return getLayout().labelfont().color(); } /// - void validate(LaTeXFeatures &) const; - /// - virtual InsetCode lyxCode() const { return COLLAPSABLE_CODE; } - - /// Allow multiple blanks - virtual bool isFreeSpacing() const { return layout_.freespacing; } - /// Don't eliminate empty paragraphs - virtual bool allowEmpty() const { return layout_.keepempty; } + InsetCode lyxCode() const { return COLLAPSABLE_CODE; } -protected: /// - virtual void doDispatch(Cursor & cur, FuncRequest & cmd); + virtual bool usePlainLayout() const { return true; } /// - Dimension dimensionCollapsed() const; + std::string contextMenu(BufferView const & bv, int x, int y) const; /// - Box const & buttonDim() const; - /// - void edit(Cursor & cur, bool left); - /// - Inset * editXY(Cursor & cur, int x, int y); - /// - docstring floatName(std::string const & type, BufferParams const &) const; - /// - virtual void resetParagraphsFont(); - /// - virtual void getDrawFont(FontInfo &) const; - + std::string contextMenuName() const; protected: /// - mutable Box button_dim; - /// - mutable int topx; + void doDispatch(Cursor & cur, FuncRequest & cmd); /// - mutable int topbaseline; + void edit(Cursor & cur, bool front, + EntryDirection entry_from = ENTRY_DIRECTION_IGNORE); /// - mutable InsetLayout layout_; + Inset * editXY(Cursor & cur, int x, int y); /// - CollapseStatus internalStatus() const { return status_; } + mutable CollapseStatus status_; 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_; - /// changes color when mouse enters/leaves this inset - bool mouse_hover_; -}; + Dimension dimensionCollapsed(BufferView const & bv) const; + /// + docstring labelstring_; + + // These variables depend of the view in which the inset is displayed + struct View + { + /// The dimension of the inset button + Box button_dim_; + /// a substatus of the Open status, determined automatically in metrics + bool openinlined_; + /// the inset will automatically open when the cursor is inside. This is + /// dependent on the bufferview, compare with MathMacro::editing_. + bool auto_open_; + /// changes color when mouse enters/leaves this inset + bool mouse_hover_; + }; -// A helper function that pushes the cursor out of the inset. -void leaveInset(Cursor & cur, Inset const & in); + /// + mutable std::map view_; +}; } // namespace lyx