]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/MacroTable.h
de.po
[lyx.git] / src / mathed / MacroTable.h
index 97029a3df00f52a004026668597d952cb63f5ce4..eb613cae073c1987b272f62893324dab9fd1ccc3 100644 (file)
@@ -25,7 +25,7 @@ namespace lyx {
 
 class Buffer;
 class MathData;
-class MathMacroTemplate;
+class InsetMathMacroTemplate;
 class Paragraph;
 class latexkeys;
 
@@ -43,7 +43,7 @@ public:
        /// Create lazy MacroData which only queries the macro template when needed
        MacroData(Buffer * buf, DocIterator const & pos);
        /// Create non-lazy MacroData which directly queries the macro template
-       MacroData(Buffer * buf, MathMacroTemplate const & macro);
+       MacroData(Buffer * buf, InsetMathMacroTemplate const & macro);
 
        ///
        docstring const & definition() const { updateData(); return definition_; }
@@ -62,11 +62,17 @@ public:
        ///
        std::string const requires() const;
        ///
+       bool hidden() const;
+       ///
        docstring const xmlname() const;
        ///
        char const * MathMLtype() const;
        ///
+       latexkeys const * symbol() const { return sym_; }
+       ///
        void setSymbol(latexkeys const * sym) { sym_ = sym; }
+       ///
+       DocIterator const & pos() { return pos_; }
 
        /// lock while being drawn to avoid recursions
        int lock() const { return ++lockCount_; }
@@ -100,7 +106,7 @@ public:
 
 private:
        ///
-       void queryData(MathMacroTemplate const & macro) const;
+       void queryData(InsetMathMacroTemplate const & macro) const;
        ///
        void updateData() const;
        ///
@@ -162,7 +168,7 @@ public:
        ///
        void dump();
        ///
-       void getMacroNames(std::set<docstring> & names) const;
+       void getMacroNames(std::set<docstring> & names, bool gethidden) const;
 
        /// the global list
        static MacroTable & globalMacros();