]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetcollapsable.h
* src/LyXAction.C: mark goto-clear-bookmark as working without buffer
[lyx.git] / src / insets / insetcollapsable.h
index 335c0ddb340546c28586d5d816bd8487cfebbbef..4a4f2fec1975ec54032431f4d9d3c762db02ff0d 100644 (file)
 #include "box.h"
 #include "lyxfont.h"
 
-class Painter;
+#include <string>
+
+namespace lyx {
+
 class LyXText;
 class Paragraph;
 class CursorSlice;
 
+namespace frontend { class Painter; }
+
 /** A collapsable text inset
 
 */
@@ -35,73 +40,68 @@ public:
        ///
        static int const TEXT_TO_BOTTOM_OFFSET = 2;
        ///
-       enum CollapseStatus {
-               Collapsed,
-               Inlined,
-               Open
-       };
-       ///
        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;
        ///
-       bool hitButton(FuncRequest &) 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;
        ///
-       std::string const getNewLabel(std::string const & l) const;
+       bool hitButton(FuncRequest const &) 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() {}
        ///
        void setLabelFont(LyXFont & f);
        ///
-       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; }
        ///
        bool inlined() const { return status_ == Inlined; }
        ///
-       CollapseStatus status() const { return status_; }
-       ///
-       void open();
-       ///
-       void close();
+       CollapseStatus status() const;
        ///
        bool allowSpellCheck() const { return true; }
-
-protected:
        ///
-       void setStatus(CollapseStatus st);
+       bool getStatus(LCursor &, FuncRequest const &, FuncStatus &) const;
        ///
-       void priv_dispatch(LCursor & cur, FuncRequest & cmd);
+       void setStatus(LCursor & cur, CollapseStatus st);
        ///
-       void dimension_collapsed(Dimension &) const;
+       bool setMouseHover(bool mouse_hover);
+
+protected:
        ///
-       void draw_collapsed(PainterInfo & pi, int x, int y) const;
+       virtual void doDispatch(LCursor & cur, FuncRequest & cmd);
        ///
-       int getMaxTextWidth(Painter & pain, UpdatableInset const *) const;
+       Dimension dimensionCollapsed() const;
        ///
        Box const & buttonDim() const;
        ///
        void edit(LCursor & cur, bool left);
        ///
-       InsetBase * editXY(LCursor & cur, int x, int y) const;
+       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:
        ///
@@ -113,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