X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2Finsetcollapsable.h;h=4a4f2fec1975ec54032431f4d9d3c762db02ff0d;hb=e28331ed63062dea10d0a21b9ec12034b4b17b9a;hp=1ead924b0ab8673ae7a812b20dc7e62533e8594d;hpb=62df753a2e70a2f05e72d59ecb79daf44f1673d2;p=lyx.git diff --git a/src/insets/insetcollapsable.h b/src/insets/insetcollapsable.h index 1ead924b0a..4a4f2fec19 100644 --- a/src/insets/insetcollapsable.h +++ b/src/insets/insetcollapsable.h @@ -20,261 +20,116 @@ #include "box.h" #include "lyxfont.h" -#include +#include + +namespace lyx { -class Painter; 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; - /// - RESULT localDispatch(FuncRequest const &); - /// - int latex(Buffer const &, std::ostream &, - LatexRunParams const &) const; - /// - int ascii(Buffer const &, std::ostream &, int) const; - /// - int linuxdoc(Buffer const &, std::ostream &) const; /// - int docbook(Buffer const &, std::ostream &, bool mixcont) 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; /// - 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(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; - /// - int scroll(bool recursive=true) const; - /// - void scroll(BufferView *bv, float sx) const; /// - void scroll(BufferView *bv, int offset) const; + bool isOpen() const { return status_ == Open || status_ == Inlined; } /// - InsetOld * getInsetFromID(int id) const; + bool inlined() const { return status_ == Inlined; } /// - ParagraphList * getParagraphs(int) const; + CollapseStatus status() const; /// - LyXCursor const & cursor(BufferView *) const; + bool allowSpellCheck() const { return true; } /// - bool isOpen() const; + bool getStatus(LCursor &, FuncRequest const &, FuncStatus &) const; /// - void open(BufferView *); - /// - void close(BufferView *) const; - /// - bool allowSpellcheck() const; - /// - WordLangTuple const - selectNextWordToSpellcheck(BufferView *, float &) const; - /// - void selectSelectedWord(BufferView *); - - void markErased(); - - bool nextChange(BufferView * bv, lyx::pos_type & length); - - /// - bool searchForward(BufferView * bv, string const & str, - bool = true, bool = false); - bool searchBackward(BufferView * bv, string const & str, - bool = true, bool = false); - + void setStatus(LCursor & cur, CollapseStatus st); /// - void addPreview(lyx::graphics::PreviewLoader &) const; + bool setMouseHover(bool mouse_hover); protected: /// - virtual void cache(BufferView *) const; + virtual void doDispatch(LCursor & cur, FuncRequest & cmd); /// - virtual BufferView * view() const; - - /// - void dimension_collapsed(Dimension &) const; - /// - int height_collapsed() const; - /// - void draw_collapsed(PainterInfo & pi, int x, int y) const; - /// - int getMaxTextWidth(Painter & pain, UpdatableInset const *) const; - /// Should be non-const... - void setCollapsed(bool) const; + Dimension dimensionCollapsed() const; /// Box const & buttonDim() const; - -private: /// - void lfunMouseRelease(FuncRequest const &); + void edit(LCursor & cur, bool left); /// - FuncRequest adjustCommand(FuncRequest const &); - -public: + InsetBase * editXY(LCursor & cur, int x, int y); /// - mutable InsetText inset; -private: + void setInlined() { status_ = Inlined; } + /// Is the width forced to some value? + virtual bool hasFixedWidth() const { return false; } /// - mutable bool collapsed_; + docstring floatName(std::string const & type, BufferParams const &); + +protected: /// LyXFont labelfont_; /// mutable Box button_dim; /// mutable int topx; - mutable int topbaseline; - /// - mutable string label; -#if 0 - /// - bool autocollapse; -#endif + mutable int topbaseline; /// - bool in_update; + mutable docstring label; +private: /// - mutable bool first_after_edit; + 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 boost::weak_ptr view_; + 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 -bool InsetCollapsable::allowSpellcheck() const -{ - return inset.allowSpellcheck(); -} - - -inline -void InsetCollapsable::selectSelectedWord(BufferView * bv) -{ - inset.selectSelectedWord(bv); -} - - -inline -Box const & InsetCollapsable::buttonDim() const -{ - return button_dim; -} +} // namespace lyx #endif