]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetcollapsable.h
static_cast-based key/mouse-state. Kill insetKeyPress.
[lyx.git] / src / insets / insetcollapsable.h
index e672030953e266d19271e696aed98c4c80c68dee..d3dc3945ef5ca0ac356855ac53c3d1690d1c5748 100644 (file)
@@ -1,7 +1,7 @@
 // -*- C++ -*-
 /* This file is part of
  * ======================================================
- * 
+ *
  *           LyX, The Document Processor
  *
  *           Copyright 2000-2001 The LyX Team.
@@ -27,8 +27,8 @@ class LyXText;
 class Paragraph;
 class LyXCursor;
 
-/** A colapsable text inset
-  
+/** A collapsable text inset
+
 */
 class InsetCollapsable : public UpdatableInset {
 public:
@@ -41,8 +41,10 @@ public:
        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(InsetCollapsable const & in, bool same_id = false);
        ///
        void read(Buffer const *, LyXLex &);
        ///
@@ -52,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 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);
        ///
@@ -66,7 +68,7 @@ public:
        ///
        bool insertInset(BufferView *, Inset * inset);
        ///
-       bool insetAllowed(Inset::Code code) const {
+       virtual bool insetAllowed(Inset::Code code) const {
                return inset.insetAllowed(code);
        }
        ///
@@ -76,7 +78,7 @@ public:
        ///
        void insetUnlock(BufferView *);
        ///
-       bool needFullRow() const { return !collapsed_; }
+       bool needFullRow() const { return isOpen(); }
        ///
        bool lockInsetInInset(BufferView *, UpdatableInset *);
        ///
@@ -85,15 +87,13 @@ public:
        ///
        bool updateInsetInInset(BufferView *, Inset *);
        ///
-       unsigned int insetInInsetY();
-       ///
-       void insetButtonRelease(BufferView *, int, int, int);
+       int insetInInsetY() const;
        ///
-       void insetButtonPress(BufferView *, int, int, int);
+       bool insetButtonRelease(BufferView *, int, int, mouse_button::state);
        ///
-       void insetMotionNotify(BufferView *, int, int, int);
+       void insetButtonPress(BufferView *, int, int, mouse_button::state);
        ///
-       void insetKeyPress(XKeyEvent *);
+       void insetMotionNotify(BufferView *, int, int, mouse_button::state);
        ///
        UpdatableInset::RESULT localDispatch(BufferView *, kb_action,
                                             string const &);
@@ -101,11 +101,11 @@ public:
        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 &) const;
        ///
        void validate(LaTeXFeatures & features) const;
        ///
@@ -125,15 +125,19 @@ public:
        UpdatableInset * getFirstLockingInsetOfType(Inset::Code);
        ///
        void setFont(BufferView *, LyXFont const &, bool toggleall = false,
-                 bool selectall = false);
+                bool selectall = false);
        ///
-       void setLabel(string const & l) { label = l; }
+       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;
        ///
@@ -161,14 +165,19 @@ public:
        ///
        Paragraph * firstParagraph() const;
        ///
+       Paragraph * getFirstParagraph(int) const;
+       ///
        LyXCursor const & cursor(BufferView *) const;
        ///
        bool isOpen() const { return !collapsed_; }
-       void open(BufferView *, bool);
        ///
-       string selectNextWord(BufferView * bv, float & value) const {
-               return inset.selectNextWord(bv, value);
-       }
+       void open(BufferView *);
+       ///
+       void close(BufferView *) const;
+       ///
+       bool allowSpellcheck() { return inset.allowSpellcheck(); }
+       string const selectNextWordToSpellcheck(BufferView *, float &) const;
+
        void selectSelectedWord(BufferView * bv) {
                inset.selectSelectedWord(bv);
        }
@@ -177,35 +186,31 @@ public:
        }
        ///
        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);
 
 protected:
        ///
-       int ascent_collapsed(Painter &, LyXFont const &) const;
+       int ascent_collapsed() const;
        ///
-       int descent_collapsed(Painter &, LyXFont const &) const;
+       int descent_collapsed() const;
        ///
-       int width_collapsed(Painter &, LyXFont const & f) const;
+       int width_collapsed() const;
        ///
-       void draw_collapsed(Painter & pain, const LyXFont &, int , float &) const;
+       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:
        ///
        mutable int button_length;
@@ -213,19 +218,24 @@ protected:
        mutable int button_top_y;
        ///
        mutable int button_bottom_y;
+       ///
+       mutable int topx;
+       mutable int topbaseline;
+       mutable UpdateCodes need_update;
+
 private:
        ///
-       string label;
+       mutable string label;
+#if 0
        ///
        bool autocollapse;
-       ///
-       int widthCollapsed;
+#endif
        ///
        mutable int oldWidth;
        ///
-       mutable int topx;
-       mutable int topbaseline;
-       mutable UpdateCodes need_update;
+       bool in_update;
+       ///
+       mutable bool first_after_edit;
 };
 
 #endif