]> 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 1dedc0f65298c27acc12dd5c3746fed47f7c967a..4a4f2fec1975ec54032431f4d9d3c762db02ff0d 100644 (file)
 // -*- C++ -*-
-/* This file is part of
- * ======================================================
- * 
- *           LyX, The Document Processor
+/**
+ * \file insetcollapsable.h
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- *           Copyright (C) 2000 The LyX Team.
+ * \author Alejandro Aguilar Sierra
+ * \author Jürgen Vigna
+ * \author Lars Gullik Bjønnes
  *
- *======================================================
+ * Full author contact details are available in file CREDITS.
  */
 
-
 #ifndef INSETCOLLAPSABLE_H
 #define INSETCOLLAPSABLE_H
 
-#ifdef __GNUG__
-#pragma interface
-#endif
-
+#include "inset.h"
 #include "insettext.h"
+
+#include "box.h"
 #include "lyxfont.h"
-#include "LColor.h"
 
+#include <string>
+
+namespace lyx {
 
-class Painter;
+class LyXText;
+class Paragraph;
+class CursorSlice;
+
+namespace frontend { class Painter; }
+
+/** A collapsable text inset
 
-/** A colapsable text inset
-  
 */
 class InsetCollapsable : public InsetText {
 public:
-    ///
-    static int const TEXT_TO_TOP_OFFSET = 2;
-    ///
-    static int const TEXT_TO_BOTTOM_OFFSET = 2;
-    ///
-    InsetCollapsable(Buffer *);
-    ///
-    ~InsetCollapsable() {}
-    ///
-    Inset * Clone();
-    ///
-    int ascent(Painter &, LyXFont const &) const;
-    ///
-    int descent(Painter &, LyXFont const &) const;
-    ///
-    int width(Painter &, LyXFont const & f) const;
-    ///
-    void draw(Painter & pain, const LyXFont &, int , float &) const;
-    ///
-    void Edit(BufferView *, int, int, unsigned int);
-    ///
-    EDITABLE Editable() const;
-    ///
-    void InsetUnlock(BufferView *);
-    ///
-    bool display() const { return (!collapsed); }
-    ///
-    void InsetButtonRelease(BufferView *, int, int, int);
-    ///
-    void InsetButtonPress(BufferView *, int, int, int);
-    ///
-    void InsetMotionNotify(BufferView *, int, int, int);
-    ///
-    void setLabel(string const & l) { label = l; }
-    ///
-    void setLabelFont(LyXFont & f) { labelfont = f; }
-    ///
-    void setAutoCollapse(bool f) { autocolapse = f; }
+       ///
+       static int const TEXT_TO_TOP_OFFSET = 2;
+       ///
+       static int const TEXT_TO_BOTTOM_OFFSET = 2;
+       ///
+       InsetCollapsable(BufferParams const &, CollapseStatus status = Open);
+       ///
+       InsetCollapsable(InsetCollapsable const & rhs);
+       ///
+       void read(Buffer const &, LyXLex &);
+       ///
+       void write(Buffer const &, std::ostream &) 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(BufferView const & bv, CursorSlice const & sl,
+               bool boundary, int & x, int & y) 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;
+       ///
+       void setLabel(docstring const & l);
+       ///
+       virtual void setButtonLabel() {}
+       ///
+       void setLabelFont(LyXFont & f);
+       ///
+       bool isOpen() const { return status_ == Open || status_ == Inlined; }
+       ///
+       bool inlined() const { return status_ == Inlined; }
+       ///
+       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:
-    ///
-    int ascent_collapsed(Painter &, LyXFont const &) const;
-    ///
-    int descent_collapsed(Painter &, LyXFont const &) const;
-    ///
-    int width_collapsed(Painter &, LyXFont const & f) const;
-    ///
-    void draw_collapsed(Painter & pain, const LyXFont &, int , float &) const;
-    ///
-    void UpdateLocal(BufferView *, bool);
-    
-    ///
-    bool collapsed;
-    ///
-    LColor::color framecolor;
+       ///
+       virtual void doDispatch(LCursor & cur, FuncRequest & cmd);
+       ///
+       Dimension dimensionCollapsed() const;
+       ///
+       Box const & buttonDim() const;
+       ///
+       void edit(LCursor & cur, bool left);
+       ///
+       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:
+       ///
+       LyXFont labelfont_;
+       ///
+       mutable Box button_dim;
+       ///
+       mutable int topx;
+       ///
+       mutable int topbaseline;
+       ///
+       mutable docstring label;
 private:
-    ///
-    string label;
-    ///
-    LyXFont labelfont;
-    ///
-    bool autocolapse;
-    ///
-    mutable int
-        top_baseline, top_x,
-       button_x;
+       ///
+       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