]> 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 275d2731f3860425718cea0f2eb1704d5893573d..659a1156fce48a328f1b4b1ca566e800e0ae5c67 100644 (file)
@@ -4,7 +4,7 @@
  * This file is part of LyX, the document processor.
  * Licence details can be found in the file COPYING.
  *
- * \author André Pönitz
+ * \author André Pönitz
  *
  * Full author contact details are available in file CREDITS.
  */
@@ -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:
        ///