]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_hullinset.h
fix #1073
[lyx.git] / src / mathed / math_hullinset.h
index 8a2a7b6cfb171aaa7e3b6817f08fb1caa5dc50cf..3beaa30e4f0f887b5368a27eb22aff3413cf5a9c 100644 (file)
@@ -4,12 +4,11 @@
 
 #include "math_gridinset.h"
 
-#ifdef __GNUG__
-#pragma interface
-#endif
 
 /** This provides an interface between "LyX insets" and "LyX math insets"
  *  \author André Pönitz
+ *
+ * Full author contact details are available in file CREDITS
  */
 
 class LaTeXFeatures;
@@ -25,9 +24,9 @@ public:
        ///
        mode_type currentMode() const;
        ///
-       void metrics(MathMetricsInfo & mi) const;
+       void metrics(MetricsInfo & mi) const;
        ///
-       void draw(MathPainterInfo &, int x, int y) const;
+       void draw(PainterInfo &, int x, int y) const;
        ///
        void metricsT(TextMetricsInfo const & mi) const;
        ///
@@ -46,8 +45,10 @@ public:
        bool display() const;
        ///
        bool ams() const;
+       /// local dispatcher
+       dispatch_result dispatch(FuncRequest const & cmd, idx_type & idx, pos_type & pos);
        ///
-       std::vector<string> getLabelList() const;
+       void getLabelList(std::vector<string> &) const;
        ///
        void validate(LaTeXFeatures & features) const;
        /// identifies MatrixInsets
@@ -55,14 +56,14 @@ public:
        /// identifies HullInset
        MathHullInset * asHullInset() { return this; }
 
-       ///
-       void addRow(row_type);
-       ///
-       void delRow(row_type);
-       ///
-       void addFancyCol(col_type);
-       ///
-       void delFancyCol(col_type);
+       /// add a row
+       void addRow(row_type row);
+       /// delete a row
+       void delRow(row_type row);
+       /// add a column
+       void addCol(col_type col);
+       /// delete a column
+       void delCol(col_type col);
 
        /// get type
        string const & getType() const;
@@ -87,6 +88,10 @@ public:
        ///
        void infoize(std::ostream & os) const;
 
+protected:
+       ///
+       string eolString(row_type row, bool fragile) const;
+
 private:
        ///
        void setType(string const & type);
@@ -99,11 +104,15 @@ private:
        ///
        string nicelabel(row_type row) const;
        ///
+       void doExtern(FuncRequest const & func, idx_type & idx, pos_type & pos);
+       ///
        void glueall();
        ///
        char const * standardFont() const;
        /// consistency check
        void check() const;
+       /// can this change its number of cols?
+       bool colChangeOK() const;
 
        /// "none", "simple", "display", "eqnarray",...
        string type_;