]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathNest.h
Fix doxygen output for grouped items. Without the /name tag doxygen shows the group...
[lyx.git] / src / mathed / InsetMathNest.h
index 6d73fbca375114f1fa37ce3a06315458cfb65e7f..659a1156fce48a328f1b4b1ca566e800e0ae5c67 100644 (file)
@@ -27,9 +27,11 @@ namespace lyx {
 class InsetMathNest : public InsetMath {
 public:
        /// nestinsets have a fixed size to start with
-       explicit InsetMathNest(idx_type ncells);
+       InsetMathNest(Buffer * buf, idx_type ncells);
        ///
        virtual ~InsetMathNest() {}
+       ///
+       void setBuffer(Buffer &);
 
        /// the size is usually some sort of convex hull of the cells
        /// hides inset::metrics() intentionally!
@@ -78,9 +80,9 @@ public:
        /// get notification when the cursor leaves this inset
        bool notifyCursorLeaves(Cursor const & old, Cursor & cur);
 
-       /// direct access to the cell.
-       /// inlined because shows in profile.
        //@{
+       /// direct access to the cell.
+       /// Inlined because of performance reasons.
        MathData & cell(idx_type i) { return cells_[i]; }
        MathData const & cell(idx_type i) const { return cells_[i]; }
        //@}
@@ -127,6 +129,8 @@ public:
        bool insertCompletion(Cursor & cur, docstring const & s, bool finished);
        ///
        void completionPosAndDim(Cursor const &, int & x, int & y, Dimension & dim) const;
+       ///
+       InsetCode lyxCode() const { return MATH_NEST_CODE; }
 
 protected:
        ///