]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_matrixinset.h
small cleanup, doxygen, formatting changes
[lyx.git] / src / mathed / math_matrixinset.h
index 38af58f5d270a5c727aa9397d6d92ae5c564d382..2645611cf615a362b5c86c104f9029063559ba38 100644 (file)
@@ -8,56 +8,90 @@
 
 /** Multiline math paragraph base class.
     This is the base to all multiline editable math objects
-    like array and eqnarray. 
- */
-class MathMatrixInset: public MathParInset {
- public: 
-    ///
-    explicit
-    MathMatrixInset(int m = 1, int n = 1, short st = LM_ST_TEXT);
-    ///
-    explicit
-    MathMatrixInset(MathMatrixInset *);
-    ///
-    MathedInset * Clone();
-    ///
-    virtual ~MathMatrixInset();
-    ///
-    void draw(Painter &, int, int);
-    ///
-    void Write(std::ostream &, bool fragile);
-    ///
-    void Metrics();
-    ///
-    void SetData(MathedArray *);
-    ///
-    void SetAlign(char, string const &);
-    ///
-    int GetColumns() const { return nc; }
-    ///
-    int GetRows() const { return nr; }
-    ///
-    virtual bool isMatrix() const { return true; }
-
-    /// Use this to manage the extra information independently of paragraph
-    MathedRowSt * getRowSt() const { return row; }
-    ///
-    void setRowSt(MathedRowSt * r) { row = r; }
-    
- protected:
-    ///  Number of columns & rows
-    int nc;
-    ///
-    int nr;
-    /// tab sizes
-    std::vector<int> ws_;   
-    /// 
-    char v_align; // add approp. type
-    ///
+    like array and eqnarray.
+    \author Alejandro Aguilar Sierra
+*/
+class MathMatrixInset : public MathParInset {
+public: 
+       ///
+       explicit
+       MathMatrixInset(int m = 1, int n = 1, short st = LM_ST_TEXT);
+       ///
+       explicit
+       MathMatrixInset(MathMatrixInset *);
+       ///
+       MathedInset * Clone();
+       ///
+       virtual ~MathMatrixInset();
+       ///
+       void draw(Painter &, int, int);
+       ///
+       void Write(std::ostream &, bool fragile);
+       ///
+       void Metrics();
+       ///
+       void setData(MathedArray *);
+       ///
+       void SetAlign(char, string const &);
+       ///
+       int GetColumns() const;
+       ///
+       int GetRows() const;
+       ///
+       virtual bool isMatrix() const;
+       
+       /// Use this to manage the extra information independently of paragraph
+       MathedRowSt * getRowSt() const;
+       ///
+       void setRowSt(MathedRowSt * r);
+private:
+       ///  Number of columns & rows
+       int nc_;
+       ///
+       int nr_;
+       /// tab sizes
+       std::vector<int> ws_;   
+       /// 
+       char v_align_; // add approp. type
+       ///
        //std::vector<char> h_align;
-       string h_align; // a vector would perhaps be more correct
-    /// Vertical structure
-    MathedRowSt * row;
-
+       string h_align_; // a vector would perhaps be more correct
+       /// Vertical structure
+       MathedRowSt * row_;
 };
+
+
+inline
+int MathMatrixInset::GetColumns() const
+{
+       return nc_;
+}
+
+
+inline
+int MathMatrixInset::GetRows() const
+{
+       return nr_;
+}
+
+
+inline
+bool MathMatrixInset::isMatrix() const
+{
+       return true;
+}
+       
+
+inline
+MathedRowSt * MathMatrixInset::getRowSt() const
+{
+       return row_;
+}
+
+
+inline
+void MathMatrixInset::setRowSt(MathedRowSt * r)
+{
+       row_ = r;
+}
 #endif