]> 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 a645a0cdbc10791104b9a16d9673bd4bfda15cb5..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 2000-2001 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"
 
-class Painter;
+#include <string>
+
+namespace lyx {
+
 class LyXText;
+class Paragraph;
+class CursorSlice;
+
+namespace frontend { class Painter; }
+
+/** A collapsable text inset
 
-/** A colapsable text inset
-  
 */
-class InsetCollapsable : public UpdatableInset {
+class InsetCollapsable : public InsetText {
 public:
-       ///
-       enum UpdateCodes {
-               NONE = 0,
-               FULL
-       };
        ///
        static int const TEXT_TO_TOP_OFFSET = 2;
        ///
        static int const TEXT_TO_BOTTOM_OFFSET = 2;
        ///
-       InsetCollapsable();
-       ///
-       void Read(Buffer const *, LyXLex &);
-       ///
-       void Write(Buffer const *, std::ostream &) const;
-       ///
-       int ascent(BufferView *, LyXFont const &) const;
-       ///
-       int descent(BufferView *, LyXFont const &) const;
-       ///
-       int width(BufferView *, LyXFont const & f) const;
-       ///
-       void draw(BufferView *, const LyXFont &, int , float &, bool) const;
-       ///
-       void update(BufferView *, LyXFont const &, bool =false); 
-       ///
-       void Edit(BufferView *, int, int, unsigned int);
-       ///
-       EDITABLE Editable() const;
-       ///
-       bool InsertInset(BufferView *, Inset * inset);
-       ///
-       bool IsTextInset() const { return true; }
-       ///
-       bool doClearArea() const;
-       ///
-       void InsetUnlock(BufferView *);
-       ///
-       bool needFullRow() const { return !collapsed; }
-       ///
-       bool LockInsetInInset(BufferView *, UpdatableInset *);
+       InsetCollapsable(BufferParams const &, CollapseStatus status = Open);
        ///
-       bool UnlockInsetInInset(BufferView *, UpdatableInset *,
-                               bool lr = false);
+       InsetCollapsable(InsetCollapsable const & rhs);
        ///
-       bool UpdateInsetInInset(BufferView *, Inset *);
+       void read(Buffer const &, LyXLex &);
        ///
-       unsigned int InsetInInsetY();
+       void write(Buffer const &, std::ostream &) const;
        ///
-       void InsetButtonRelease(BufferView *, int, int, int);
+       bool metrics(MetricsInfo &, Dimension &) const;
        ///
-       void InsetButtonPress(BufferView *, int, int, int);
+       void draw(PainterInfo & pi, int x, int y) const;
        ///
-       void InsetMotionNotify(BufferView *, int, int, int);
+       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 InsetKeyPress(XKeyEvent *);
+       bool hitButton(FuncRequest const &) const;
        ///
-       UpdatableInset::RESULT LocalDispatch(BufferView *, kb_action,
-                                            string const &);
+       docstring const getNewLabel(docstring const & l) const;
        ///
-       int Latex(Buffer const *, std::ostream &,
-                 bool fragile, bool free_spc) const;
+       EDITABLE editable() const;
+       /// can we go further down on mouse click?
+       bool descendable() const;
        ///
-       int Ascii(Buffer const *, std::ostream &, int) const { return 0; }
+       void setLabel(docstring const & l);
        ///
-       int Linuxdoc(Buffer const *, std::ostream &) const { return 0; }
+       virtual void setButtonLabel() {}
        ///
-       int DocBook(Buffer const *, std::ostream &) const { return 0; }
+       void setLabelFont(LyXFont & f);
        ///
-       void Validate(LaTeXFeatures & features) const;
+       bool isOpen() const { return status_ == Open || status_ == Inlined; }
        ///
-       void GetCursorPos(BufferView *, int & x, int & y) const;
+       bool inlined() const { return status_ == Inlined; }
        ///
-       void ToggleInsetCursor(BufferView *);
+       CollapseStatus status() const;
        ///
-       UpdatableInset * GetLockingInset();
+       bool allowSpellCheck() const { return true; }
        ///
-       UpdatableInset * GetFirstLockingInsetOfType(Inset::Code);
+       bool getStatus(LCursor &, FuncRequest const &, FuncStatus &) const;
        ///
-       void SetFont(BufferView *, LyXFont const &, bool toggleall = false,
-                 bool selectall = false);
+       void setStatus(LCursor & cur, CollapseStatus st);
        ///
-       void setLabel(string const & l) { label = l; }
-       ///
-       void setLabelFont(LyXFont & f) { labelfont = f; }
-       ///
-       void setAutoCollapse(bool f) { autocollapse = f; }
-       ///
-       int getMaxWidth(BufferView *, UpdatableInset const *) const;
-       ///
-       LyXText * getLyXText(BufferView const *, bool const recursive) const;
-       ///
-       void deleteLyXText(BufferView *, bool recursive=true) const;
-       ///
-       void resizeLyXText(BufferView *, bool force = false) const;
-       ///
-       std::vector<string> const getLabelList() const;
-       ///
-       bool nodraw() const;
-       ///
-       int scroll(bool recursive=true) const;
-       ///
-       void scroll(BufferView *bv, float sx) const {
-               UpdatableInset::scroll(bv, sx);
-       }
-       ///
-       void scroll(BufferView *bv, int offset) const {
-               UpdatableInset::scroll(bv, offset);
-       }
+       bool setMouseHover(bool mouse_hover);
 
 protected:
        ///
-       int ascent_collapsed(Painter &, LyXFont const &) const;
-       ///
-       int descent_collapsed(Painter &, LyXFont const &) const;
+       virtual void doDispatch(LCursor & cur, FuncRequest & cmd);
        ///
-       int width_collapsed(Painter &, LyXFont const & f) const;
+       Dimension dimensionCollapsed() const;
        ///
-       void draw_collapsed(Painter & pain, const LyXFont &, int , float &) const;
+       Box const & buttonDim() const;
        ///
-       int getMaxTextWidth(Painter & pain, UpdatableInset const *) const;
-       
+       void edit(LCursor & cur, bool left);
        ///
-       bool collapsed;
+       InsetBase * editXY(LCursor & cur, int x, int y);
        ///
-       LColor::color framecolor;
+       void setInlined() { status_ = Inlined; }
+       /// Is the width forced to some value?
+       virtual bool hasFixedWidth() const { return false; }
        ///
-       LyXFont labelfont;
-public:
-       ///
-       InsetText inset;
+       docstring floatName(std::string const & type, BufferParams const &);
+
 protected:
        ///
-       mutable int button_length;
+       LyXFont labelfont_;
        ///
-       mutable int button_top_y;
+       mutable Box button_dim;
        ///
-       mutable int button_bottom_y;
-private:
-       ///
-       string label;
+       mutable int topx;
        ///
-       bool autocollapse;
+       mutable int topbaseline;
        ///
-       int widthCollapsed;
+       mutable docstring label;
+private:
        ///
-       mutable int oldWidth;
+       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 int topx;
-       mutable int topbaseline;
-       mutable UpdateCodes need_update;
+       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