X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2Finsetcollapsable.h;h=4a4f2fec1975ec54032431f4d9d3c762db02ff0d;hb=e28331ed63062dea10d0a21b9ec12034b4b17b9a;hp=cae30c8954fd07ef73d23aa0b1612821206b6e61;hpb=cd424d78530c9e38502ee7f989ef5c426c97ad61;p=lyx.git diff --git a/src/insets/insetcollapsable.h b/src/insets/insetcollapsable.h index cae30c8954..4a4f2fec19 100644 --- a/src/insets/insetcollapsable.h +++ b/src/insets/insetcollapsable.h @@ -20,236 +20,116 @@ #include "box.h" #include "lyxfont.h" -class Painter; +#include + +namespace lyx { + class LyXText; class Paragraph; -class LyXCursor; +class CursorSlice; + +namespace frontend { class Painter; } /** A collapsable text inset */ -class InsetCollapsable : public UpdatableInset { +class InsetCollapsable : public InsetText { public: /// static int const TEXT_TO_TOP_OFFSET = 2; /// static int const TEXT_TO_BOTTOM_OFFSET = 2; - /// inset is initially collapsed if bool = true - InsetCollapsable(BufferParams const &, bool collapsed = false); /// - InsetCollapsable(InsetCollapsable const & in); + 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; - /// draw, either inlined (no button) or collapsed/open - void draw(PainterInfo & pi, int x, int y, bool inlined) const; - /// - bool hitButton(FuncRequest const &) const; - /// - EDITABLE editable() const; - /// - bool insertInset(BufferView *, InsetOld * inset); - /// - virtual bool insetAllowed(InsetOld::Code code) const; - /// - bool isTextInset() const; - /// - void insetUnlock(BufferView *); - /// - bool lockInsetInInset(BufferView *, UpdatableInset *); - /// - bool unlockInsetInInset(BufferView *, UpdatableInset *, - bool lr = false); - /// - int insetInInsetY() const; - /// - int latex(Buffer const &, std::ostream &, - OutputParams const &) const; /// - int plaintext(Buffer const &, std::ostream &, - OutputParams const &) const; + void drawSelection(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; /// - int linuxdoc(Buffer const &, std::ostream &, - OutputParams const &) const; - /// - int docbook(Buffer const &, std::ostream &, - OutputParams const & runparams) const; - /// - void validate(LaTeXFeatures & features) const; - /// FIXME, document - void getCursorPos(BufferView *, int & x, int & y) const; - /// Get the absolute document x,y of the cursor - virtual void getCursor(BufferView &, int &, int &) const; - /// - void fitInsetCursor(BufferView * bv) const; + bool hitButton(FuncRequest const &) const; /// - UpdatableInset * getLockingInset() const; + docstring const getNewLabel(docstring const & l) const; /// - UpdatableInset * getFirstLockingInsetOfType(InsetOld::Code); + EDITABLE editable() const; + /// can we go further down on mouse click? + bool descendable() const; /// - void setFont(BufferView *, LyXFont const &, bool toggleall = false, - bool selectall = false); + void setLabel(docstring const & l); /// - void setLabel(std::string const & l) const; + virtual void setButtonLabel() {} /// void setLabelFont(LyXFont & f); -#if 0 - /// - void setAutoCollapse(bool f); -#endif - /// - LyXText * getLyXText(BufferView const *, bool const recursive) const; /// - void deleteLyXText(BufferView *, bool recursive=true) const; - /// Appends \c list with all labels found within this inset. - void getLabelList(Buffer const &, std::vector & list) const; + bool isOpen() const { return status_ == Open || status_ == Inlined; } /// - int scroll(bool recursive=true) const; + bool inlined() const { return status_ == Inlined; } /// - void scroll(BufferView *bv, float sx) const; + CollapseStatus status() const; /// - void scroll(BufferView *bv, int offset) const; + bool allowSpellCheck() const { return true; } /// - ParagraphList * getParagraphs(int) const; + bool getStatus(LCursor &, FuncRequest const &, FuncStatus &) const; /// - int numParagraphs() const; + void setStatus(LCursor & cur, CollapseStatus st); /// - LyXText * getText(int) const; - /// - LyXCursor const & cursor(BufferView *) const; - /// - virtual bool display() const { return isOpen(); } - /// - bool isOpen() const; - /// - void open(BufferView *); - /// - void close(BufferView *) const; - - void markErased(); - - /// - void addPreview(lyx::graphics::PreviewLoader &) const; + bool setMouseHover(bool mouse_hover); protected: /// - virtual - DispatchResult - priv_dispatch(FuncRequest const &, idx_type &, pos_type &); - /// - void dimension_collapsed(Dimension &) const; - /// - int height_collapsed() const; - /// - void draw_collapsed(PainterInfo & pi, int x, int y) const; + virtual void doDispatch(LCursor & cur, FuncRequest & cmd); /// - int getMaxTextWidth(Painter & pain, UpdatableInset const *) const; - /// Should be non-const... - void setCollapsed(bool) const; + Dimension dimensionCollapsed() const; /// Box const & buttonDim() const; /// - void edit(BufferView *, bool); + void edit(LCursor & cur, bool left); /// - void edit(BufferView *, int, int); - -private: + InsetBase * editXY(LCursor & cur, int x, int y); /// - void lfunMouseRelease(FuncRequest const &); + void setInlined() { status_ = Inlined; } + /// Is the width forced to some value? + virtual bool hasFixedWidth() const { return false; } /// - FuncRequest adjustCommand(FuncRequest const &); + docstring floatName(std::string const & type, BufferParams const &); -public: - /// - mutable InsetText inset; -private: - /// - mutable bool collapsed_; +protected: /// LyXFont labelfont_; /// mutable Box button_dim; /// mutable int topx; - mutable int topbaseline; - /// - mutable std::string label; -#if 0 + mutable int topbaseline; /// - bool autocollapse; -#endif + mutable docstring label; +private: /// - bool in_update; + 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 bool first_after_edit; + 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); -inline -bool InsetCollapsable::insetAllowed(InsetOld::Code code) const -{ - return inset.insetAllowed(code); -} - - -inline -bool InsetCollapsable::isTextInset() const -{ - return true; -} - - -inline -void InsetCollapsable::fitInsetCursor(BufferView * bv) const -{ - inset.fitInsetCursor(bv); -} - -inline -void InsetCollapsable::setLabelFont(LyXFont & f) -{ - labelfont_ = f; -} - -#if 0 -inline -void InsetCollapsable::setAutoCollapse(bool f) -{ - autocollapse = f; -} -#endif - -inline -void InsetCollapsable::scroll(BufferView *bv, float sx) const -{ - UpdatableInset::scroll(bv, sx); -} - - -inline -void InsetCollapsable::scroll(BufferView *bv, int offset) const -{ - UpdatableInset::scroll(bv, offset); -} - - -inline -bool InsetCollapsable::isOpen() const -{ - return !collapsed_; -} - - -inline -Box const & InsetCollapsable::buttonDim() const -{ - return button_dim; -} +} // namespace lyx #endif