]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetCommand.h
Move protectArgument function to lstrings
[lyx.git] / src / insets / InsetCommand.h
index 131beff900d6261084676ce68c95e96531af5c49..ba7a945339497ff849e6d87a9cb3e29c8a400948 100644 (file)
@@ -39,6 +39,8 @@ public:
        ///
        InsetCommand(InsetCommand const & rhs);
        ///
+       InsetCommand & operator=(InsetCommand const & rhs);
+       ///
        virtual ~InsetCommand();
        ///
        InsetCommand * asInsetCommand() { return this; }
@@ -66,7 +68,7 @@ public:
        ///
        void write(std::ostream & os) const { p_.write(os); }
        ///
-       void read(Lexer & lex) { p_.read(lex); }
+       void read(Lexer & lex) { p_.Read(lex, &buffer()); }
        ///
        void doDispatch(Cursor & cur, FuncRequest & cmd);
        ///
@@ -76,6 +78,8 @@ public:
        ///
        void draw(PainterInfo & pi, int x, int y) const;
        ///
+       virtual void drawBackground(PainterInfo &, int, int) const {}
+       ///
        void latex(otexstream &, OutputParams const &) const;
        ///
        int plaintext(odocstringstream & ods, OutputParams const & op,
@@ -85,7 +89,7 @@ public:
        ///
        bool setMouseHover(BufferView const * bv, bool mouse_hover) const;
        ///
-       bool clickable(int, int) const { return hasSettings(); }
+       bool clickable(BufferView const &, int, int) const { return hasSettings(); }
        //@}
 
 protected:
@@ -95,9 +99,6 @@ protected:
        std::string contextMenuName() const;
        ///
        bool showInsetDialog(BufferView * bv) const;
-       ///
-       Dimension const dimension(BufferView const &) const 
-               { return button_.dimension(); }
        //@}
 
 protected: