]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetInfo.h
Move isMultiCell() to Cursor, and use it.
[lyx.git] / src / insets / InsetInfo.h
index f1e8ae65ab538bd2b433bf9805d6369762aa7fe0..0cd256dbdb61daa9416d7064c6e27695f145327a 100644 (file)
@@ -105,6 +105,12 @@ public:
        ///
        void write(std::ostream & os) const;
        ///
+       std::string infoType() const;
+       ///
+       std::string infoName() const { return name_; }
+       ///
+       bool validate(docstring const & argument) const;
+       ///
        bool showInsetDialog(BufferView * bv) const;
        ///
        bool getStatus(Cursor &, FuncRequest const &, FuncStatus &) const;
@@ -129,6 +135,10 @@ private:
        ///
        virtual Inset * clone() const { return new InsetInfo(*this); }
        ///
+       void error(std::string const & err);
+       ///
+       void setText(docstring const & str);
+       ///
        info_type type_;
        ///
        std::string name_;