]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetcollapsable.h
The speed patch: redraw only rows that have changed
[lyx.git] / src / insets / insetcollapsable.h
index c0eed4a19538f2f1bdb681659e88b9a51b8b3e7f..22697c4828e5bfb0c626e932baae3f2b77ff4087 100644 (file)
 class Painter;
 class LyXText;
 class Paragraph;
-class LyXCursor;
+class CursorSlice;
 
 /** 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);
        ///
        void read(Buffer const &, LyXLex &);
        ///
@@ -46,8 +44,10 @@ public:
        void 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;
+       ///
+       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;
        ///
        bool hitButton(FuncRequest const &) const;
        ///
@@ -55,100 +55,43 @@ public:
        ///
        EDITABLE editable() const;
        /// can we go further down on mouse click?
-       bool descendable() const { return isOpen(); }
-       ///
-       bool insertInset(BufferView *, InsetOld * inset);
-       ///
-       bool insetAllowed(InsetOld::Code code) const;
+       bool descendable() const;
        ///
        bool isTextInset() const { return true; }
        ///
-       int latex(Buffer const &, std::ostream &,
-                 OutputParams const &) const;
-       ///
-       int plaintext(Buffer const &, std::ostream &,
-                 OutputParams const &) const;
+       void setLabel(std::string const & l);
        ///
-       int linuxdoc(Buffer const &, std::ostream &,
-                    OutputParams const &) const;
-       ///
-       int docbook(Buffer const &, std::ostream &,
-                   OutputParams const & runparams) const;
-       ///
-       void validate(LaTeXFeatures & features) const;
-       /// get the screen x,y of the cursor
-       void getCursorPos(int & x, int & y) const;
-       ///
-       void setLabel(std::string const & l) const;
+       virtual void setButtonLabel() {}
        ///
        void setLabelFont(LyXFont & f);
-#if 0
-       ///
-       void setAutoCollapse(bool f);
-#endif
-       /// Appends \c list with all labels found within this inset.
-       void getLabelList(Buffer const &, std::vector<std::string> & list) const;
-       ///
-       int scroll(bool recursive=true) const;
-       ///
-       void scroll(BufferView *bv, float sx) const;
-       ///
-       void scroll(BufferView *bv, int offset) const;
-       ///
-       ParagraphList * getParagraphs(int) const;
-       ///
-       int numParagraphs() const;
-       ///
-       LyXText * getText(int) const;
-       ///
-       bool display() const { return isOpen(); }
        ///
-       bool isOpen() const;
+       bool isOpen() const { return status_ == Open || status_ == Inlined; }
        ///
-       void open();
+       bool inlined() const { return status_ == Inlined; }
        ///
-       void close() const;
+       CollapseStatus status() const;
        ///
-       void markErased();
+       bool allowSpellCheck() const { return true; }
        ///
-       void addPreview(lyx::graphics::PreviewLoader &) const;
+       bool getStatus(LCursor &, FuncRequest const &, FuncStatus &) const;
        ///
-       void setBackgroundColor(LColor_color);
+       void setStatus(LCursor & cur, CollapseStatus st);
 
 protected:
        ///
-       virtual
-       DispatchResult
-       priv_dispatch(FuncRequest const &, idx_type &, pos_type &);
+       virtual void doDispatch(LCursor & cur, FuncRequest & cmd);
        ///
-       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;
        ///
-       void edit(BufferView *, bool);
-       ///
-       void edit(BufferView *, int, int);
-
-private:
+       void edit(LCursor & cur, bool left);
        ///
-       DispatchResult lfunMouseRelease(FuncRequest const &);
+       InsetBase * editXY(LCursor & cur, int x, int y);
        ///
-       FuncRequest adjustCommand(FuncRequest const &);
+       void setInlined() { status_ = Inlined; }
 
-public:
-       ///
-       mutable InsetText inset;
-private:
-       ///
-       mutable bool collapsed_;
+protected:
        ///
        LyXFont labelfont_;
        ///
@@ -159,10 +102,18 @@ private:
        mutable int topbaseline;
        ///
        mutable std::string label;
-#if 0
+private:
        ///
-       bool autocollapse;
-#endif
+       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_;
 };
 
+// A helper function that pushes the cursor out of the inset.
+void leaveInset(LCursor & cur, InsetBase const & in);
+
 #endif