X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2Finsetcollapsable.h;h=4a4f2fec1975ec54032431f4d9d3c762db02ff0d;hb=e28331ed63062dea10d0a21b9ec12034b4b17b9a;hp=6b351bf9d1a42f0fb3ff8bd6fcb973f16944175e;hpb=282f86fbb1ec7a877cdd05f25edbf468ae06595d;p=lyx.git diff --git a/src/insets/insetcollapsable.h b/src/insets/insetcollapsable.h index 6b351bf9d1..4a4f2fec19 100644 --- a/src/insets/insetcollapsable.h +++ b/src/insets/insetcollapsable.h @@ -20,11 +20,16 @@ #include "box.h" #include "lyxfont.h" -class Painter; +#include + +namespace lyx { + class LyXText; class Paragraph; class CursorSlice; +namespace frontend { class Painter; } + /** A collapsable text inset */ @@ -37,29 +42,30 @@ public: /// InsetCollapsable(BufferParams const &, CollapseStatus status = Open); /// + InsetCollapsable(InsetCollapsable const & rhs); + /// void read(Buffer const &, LyXLex &); /// void write(Buffer const &, std::ostream &) const; /// - void metrics(MetricsInfo &, Dimension &) const; + bool metrics(MetricsInfo &, Dimension &) const; /// void draw(PainterInfo & pi, int x, int y) const; /// void drawSelection(PainterInfo & pi, int x, int y) const; /// return x,y of given position relative to the inset's baseline - void cursorPos(CursorSlice const & sl, bool boundary, int & x, int & y) const; + void cursorPos(BufferView const & bv, CursorSlice const & sl, + bool boundary, int & x, int & y) const; /// bool hitButton(FuncRequest const &) const; /// - std::string const getNewLabel(std::string const & l) const; + docstring const getNewLabel(docstring const & l) const; /// EDITABLE editable() const; /// can we go further down on mouse click? bool descendable() const; /// - bool isTextInset() const { return true; } - /// - void setLabel(std::string const & l); + void setLabel(docstring const & l); /// virtual void setButtonLabel() {} /// @@ -69,13 +75,15 @@ public: /// bool inlined() const { return status_ == Inlined; } /// - CollapseStatus status() const { return status_; } + CollapseStatus status() const; /// bool allowSpellCheck() const { return true; } /// bool getStatus(LCursor &, FuncRequest const &, FuncStatus &) const; /// void setStatus(LCursor & cur, CollapseStatus st); + /// + bool setMouseHover(bool mouse_hover); protected: /// @@ -90,6 +98,10 @@ protected: InsetBase * editXY(LCursor & cur, int x, int y); /// void setInlined() { status_ = Inlined; } + /// Is the width forced to some value? + virtual bool hasFixedWidth() const { return false; } + /// + docstring floatName(std::string const & type, BufferParams const &); protected: /// @@ -101,17 +113,23 @@ protected: /// mutable int topbaseline; /// - mutable std::string label; + 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_; + /// changes color when mouse enters/leaves this inset + bool mouse_hover_; }; // A helper function that pushes the cursor out of the inset. void leaveInset(LCursor & cur, InsetBase const & in); +} // namespace lyx + #endif