]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetcollapsable.h
fix #832
[lyx.git] / src / insets / insetcollapsable.h
index bf21fb5506cb976f976d31a2e3f35f118b692a9f..577111f21a285c4b0d9eb41e0b44c3629b6fc7fb 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 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 "lyxfont.h"
+#include "funcrequest.h" // for adjustCommand
 #include "LColor.h"
 
+#include <boost/weak_ptr.hpp>
 
 class Painter;
+class LyXText;
+class Paragraph;
+class LyXCursor;
+
+/** A collapsable text inset
 
-/** A colapsable text inset
-  
 */
-class InsetCollapsable : public InsetText {
+class InsetCollapsable : public UpdatableInset {
 public:
-    ///
-    static int const TEXT_TO_TOP_OFFSET = 2;
-    ///
-    static int const TEXT_TO_BOTTOM_OFFSET = 2;
-    ///
-    explicit
-    InsetCollapsable();
-    ///
-    ~InsetCollapsable() {}
-    ///
-    Inset * Clone() const;
-    ///
-    void Read(Buffer const *, LyXLex &);
-    ///
-    void Write(Buffer const *, std::ostream &) const;
-    ///
-    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) { autocollapse = f; }
-    ///
-    int getMaxWidth(Painter & pain, UpdatableInset const *) const;
+       ///
+       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 = false);
+       ///
+       InsetCollapsable(InsetCollapsable const & in, bool same_id = false);
+       ///
+       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 &) const;
+       ///
+       void draw(BufferView *, const LyXFont &, int , float &) const;
+       /// draw, either inlined (no button) or collapsed/open
+       void draw(BufferView * bv, LyXFont const & f,
+                 int baseline, float & x, bool inlined) const;
+       ///
+       void update(BufferView *, bool =false);
+       ///
+       EDITABLE editable() const;
+       ///
+       bool insertInset(BufferView *, Inset * inset);
+       ///
+       virtual bool insetAllowed(Inset::Code code) const {
+               return inset.insetAllowed(code);
+       }
+       ///
+       bool isTextInset() const { return true; }
+       ///
+       void insetUnlock(BufferView *);
+       ///
+       bool needFullRow() const { return isOpen(); }
+       ///
+       bool lockInsetInInset(BufferView *, UpdatableInset *);
+       ///
+       bool unlockInsetInInset(BufferView *, UpdatableInset *,
+                               bool lr = false);
+       ///
+       bool updateInsetInInset(BufferView *, Inset *);
+       ///
+       int insetInInsetY() const;
+       ///
+       RESULT localDispatch(FuncRequest const &);
+       ///
+       int latex(Buffer const *, std::ostream &,
+                 bool fragile, bool free_spc) 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 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 {
+               inset.fitInsetCursor(bv);
+       }
+       UpdatableInset * getLockingInset() const;
+       ///
+       UpdatableInset * getFirstLockingInsetOfType(Inset::Code);
+       ///
+       void setFont(BufferView *, LyXFont const &, bool toggleall = false,
+                bool selectall = false);
+       ///
+       void setLabel(string const & l) const;
+       ///
+       void setLabelFont(LyXFont & f) { labelfont = f; }
+#if 0
+       ///
+       void setAutoCollapse(bool f) { autocollapse = f; }
+#endif
+       ///
+       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);
+       }
+       ///
+       Inset * getInsetFromID(int id) const;
+       ///
+       ParagraphList * getParagraphs(int) const;
+       ///
+       LyXCursor const & cursor(BufferView *) const;
+       ///
+       bool isOpen() const { return !collapsed_; }
+       ///
+       void open(BufferView *);
+       ///
+       void close(BufferView *) const;
+       ///
+       bool allowSpellcheck() const { return inset.allowSpellcheck(); }
+       ///
+       WordLangTuple const
+       selectNextWordToSpellcheck(BufferView *, float &) const;
+       ///
+       void selectSelectedWord(BufferView * bv) {
+               inset.selectSelectedWord(bv);
+       }
+       ///
+       void toggleSelection(BufferView * bv, bool kill_selection) {
+               inset.toggleSelection(bv, kill_selection);
+       }
+       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 addPreview(grfx::PreviewLoader &) const;
 
 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;
-    ///
-    int getMaxTextWidth(Painter & pain, UpdatableInset const *) const;
-    
-    ///
-    bool collapsed;
-    ///
-    LColor::color framecolor;
-    ///
-    LyXFont labelfont;
+       ///
+       virtual void cache(BufferView *) const;
+       ///
+       virtual BufferView * view() const;
+
+       ///
+       int ascent_collapsed() const;
+       ///
+       int descent_collapsed() const;
+       ///
+       int width_collapsed() const;
+       ///
+       void draw_collapsed(Painter & pain, int , float &) const;
+       ///
+       int getMaxTextWidth(Painter & pain, UpdatableInset const *) const;
+
+       ///
+       mutable bool collapsed_;
+       ///
+       LColor::color framecolor;
+       ///
+       LyXFont labelfont;
+public:
+       ///
+       mutable InsetText inset;
+protected:
+       ///
+       mutable int button_length;
+       ///
+       mutable int button_top_y;
+       ///
+       mutable int button_bottom_y;
+       ///
+       mutable int topx;
+       mutable int topbaseline;
 
 private:
-    ///
-    string label;
-    ///
-    bool autocollapse;
-    ///
-    mutable int
-       button_length, button_top_y, button_bottom_y;
-    ///
-    int widthOffset;
+       ///
+       void lfunMouseRelease(FuncRequest const &);
+       ///
+       FuncRequest adjustCommand(FuncRequest const &);
+
+       ///
+       mutable string label;
+#if 0
+       ///
+       bool autocollapse;
+#endif
+       ///
+       mutable int oldWidth;
+       ///
+       bool in_update;
+       ///
+       mutable bool first_after_edit;
+       ///
+       mutable boost::weak_ptr<BufferView> view_;
 };
 
 #endif