]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_deliminset.h
inactive new stuff to re-sync my tree before going on holyday
[lyx.git] / src / mathed / math_deliminset.h
index c896ee7ca3aa464e93552e0adaa091da95617931..c96ffa5924cb30ce63916d5919271b66c7b54391 100644 (file)
 class MathDelimInset : public MathNestInset {
 public:
        ///
-       MathDelimInset(string const &, string const &);
+       MathDelimInset(string const & left, string const & right);
        ///
        MathInset * clone() const;
        ///
        MathDelimInset * asDelimInset() { return this; }
        ///
        MathDelimInset const * asDelimInset() const { return this; }
+       /// is it (...)?
+       bool isParanthesis() const;
+       /// is it [...]?
+       bool isBrackets() const;
+       /// is it |...|?
+       bool isAbs() const;
        ///
        void metrics(MathMetricsInfo const & st) const;
        ///
@@ -45,7 +51,5 @@ public:
 private:
        ///
        int dw() const;
-       ///
-       static string latexName(string const & name);
 };
 #endif