]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetcollapsable.h
The markDirty() and fitCursor() changes
[lyx.git] / src / insets / insetcollapsable.h
index 2122b8a3a5cae2202237295f8373de3c10a0821c..7243844297e2464b09bf906b0e751962c19b2b96 100644 (file)
@@ -1,34 +1,34 @@
 // -*- 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 "lyxfont.h"
 #include "LColor.h"
 
+#include <boost/weak_ptr.hpp>
+
 class Painter;
 class LyXText;
 class Paragraph;
 class LyXCursor;
 
 /** A collapsable text inset
-  
+
 */
 class InsetCollapsable : public UpdatableInset {
 public:
@@ -42,12 +42,10 @@ public:
        ///
        static int const TEXT_TO_BOTTOM_OFFSET = 2;
        /// inset is initially collapsed if bool = true
-       InsetCollapsable(bool = false);
+       InsetCollapsable(BufferParams const &, bool = false);
        ///
        InsetCollapsable(InsetCollapsable const & in, bool same_id = false);
        ///
-       Inset * clone(Buffer const &, bool same_id = false) const;
-       
        void read(Buffer const *, LyXLex &);
        ///
        void write(Buffer const *, std::ostream &) const;
@@ -56,13 +54,13 @@ public:
        ///
        int descent(BufferView *, LyXFont const &) const;
        ///
-       int width(BufferView *, LyXFont const & f) const;
+       int width(BufferView *, LyXFont const &) const;
        ///
-       void draw(BufferView *, const LyXFont &, int , float &, bool) const;
+       void draw(BufferView *, const LyXFont &, int , float &) const;
        ///
-       void update(BufferView *, LyXFont const &, bool =false); 
+       void update(BufferView *, LyXFont const &, bool =false);
        ///
-       void edit(BufferView *, int, int, unsigned int);
+       void edit(BufferView *, int, int, mouse_button::state);
        ///
        void edit(BufferView *, bool front = true);
        ///
@@ -70,17 +68,15 @@ public:
        ///
        bool insertInset(BufferView *, Inset * inset);
        ///
-       bool insetAllowed(Inset::Code code) const {
+       virtual bool insetAllowed(Inset::Code code) const {
                return inset.insetAllowed(code);
        }
        ///
        bool isTextInset() const { return true; }
        ///
-       bool doClearArea() const;
-       ///
        void insetUnlock(BufferView *);
        ///
-       bool needFullRow() const { return !collapsed_; }
+       bool needFullRow() const { return isOpen(); }
        ///
        bool lockInsetInInset(BufferView *, UpdatableInset *);
        ///
@@ -89,27 +85,18 @@ public:
        ///
        bool updateInsetInInset(BufferView *, Inset *);
        ///
-       unsigned int insetInInsetY();
-       ///
-       void insetButtonRelease(BufferView *, int, int, int);
-       ///
-       void insetButtonPress(BufferView *, int, int, int);
+       int insetInInsetY() const;
        ///
-       void insetMotionNotify(BufferView *, int, int, int);
-       ///
-       void insetKeyPress(XKeyEvent *);
-       ///
-       UpdatableInset::RESULT localDispatch(BufferView *, kb_action,
-                                            string 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 { return 0; }
+       int ascii(Buffer const *, std::ostream &, int) const;
        ///
-       int linuxdoc(Buffer const *, std::ostream &) const { return 0; }
+       int linuxdoc(Buffer const *, std::ostream &) const;
        ///
-       int docBook(Buffer const *, std::ostream &) const { return 0; }
+       int docbook(Buffer const *, std::ostream &, bool mixcont) const;
        ///
        void validate(LaTeXFeatures & features) const;
        ///
@@ -129,22 +116,19 @@ public:
        UpdatableInset * getFirstLockingInsetOfType(Inset::Code);
        ///
        void setFont(BufferView *, LyXFont const &, bool toggleall = false,
-                 bool selectall = false);
-#if 0
+                bool selectall = false);
        ///
-       void setLabel(string const & l, bool flag = false);
-#else
-       ///
-       void setLabel(string const & l);
-#endif
+       void setLabel(string const & l) const;
        ///
        void setLabelFont(LyXFont & f) { labelfont = f; }
 #if 0
        ///
        void setAutoCollapse(bool f) { autocollapse = f; }
 #endif
+#if 0
        ///
        int getMaxWidth(BufferView *, UpdatableInset const *) const;
+#endif
        ///
        LyXText * getLyXText(BufferView const *, bool const recursive) const;
        ///
@@ -166,45 +150,52 @@ public:
                UpdatableInset::scroll(bv, offset);
        }
        ///
-       Paragraph * getParFromID(int id) const;
-       ///
        Inset * getInsetFromID(int id) const;
        ///
        Paragraph * firstParagraph() const;
        ///
+       Paragraph * getFirstParagraph(int) const;
+       ///
        LyXCursor const & cursor(BufferView *) const;
        ///
        bool isOpen() const { return !collapsed_; }
-#if 0
-       ///
-       void open(BufferView *, bool);
-#else
        ///
        void open(BufferView *);
        ///
-       void close(BufferView *);
-#endif
+       void close(BufferView *) const;
+       ///
+       bool allowSpellcheck() const { return inset.allowSpellcheck(); }
+       ///
+       WordLangTuple const
+       selectNextWordToSpellcheck(BufferView *, float &) const;
        ///
-       string const selectNextWord(BufferView * bv, float & value) const {
-               return inset.selectNextWord(bv, value);
-       }
        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 const & cs = true, bool const & mw = false) {
-               return inset.searchForward(bv, str, cs, mw);
-       }
+                          bool = true, bool = false);
        bool searchBackward(BufferView * bv, string const & str,
-                           bool const & cs = true, bool const & mw = false) {
-               return inset.searchBackward(bv, str, cs, mw);
-       }
+                           bool = true, bool = false);
+
+       ///
+       void addPreview(grfx::PreviewLoader &) const;
 
 protected:
+       ///
+       virtual void cache(BufferView *) const;
+       ///
+       virtual BufferView * view() const;
+
        ///
        int ascent_collapsed() const;
        ///
@@ -215,34 +206,38 @@ protected:
        void draw_collapsed(Painter & pain, int , float &) const;
        ///
        int getMaxTextWidth(Painter & pain, UpdatableInset const *) const;
-       
+
        ///
-       bool collapsed_;
+       mutable bool collapsed_;
        ///
        LColor::color framecolor;
        ///
        LyXFont labelfont;
 public:
        ///
-       InsetText inset;
+       mutable InsetText inset;
 protected:
-#if 0
-       ///
-       string const get_new_label() const;
-#endif
        ///
        mutable int button_length;
        ///
        mutable int button_top_y;
        ///
        mutable int button_bottom_y;
+       ///
+       mutable int topx;
+       mutable int topbaseline;
+       mutable UpdateCodes need_update;
+
 private:
        ///
-       string label;
-#if 0
+       void lfunMousePress(FuncRequest const &);
        ///
-       mutable string draw_label;
-#endif
+       bool lfunMouseRelease(FuncRequest const &);
+       ///
+       void lfunMouseMotion(FuncRequest const &);
+
+       ///
+       mutable string label;
 #if 0
        ///
        bool autocollapse;
@@ -250,15 +245,11 @@ private:
        ///
        mutable int oldWidth;
        ///
-       mutable int topx;
-       mutable int topbaseline;
-       mutable UpdateCodes need_update;
+       bool in_update;
        ///
-       bool inlined;
-#if 0
+       mutable bool first_after_edit;
        ///
-       bool change_label_with_text;
-#endif
+       mutable boost::weak_ptr<BufferView> view_;
 };
 
 #endif