]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/command_inset.h
bug + spped fixes + small stuff
[lyx.git] / src / mathed / command_inset.h
index 75090caa551faa2f6ebb368f4c46406977e71aec..b724832cc2cb00e127de734e8b5e41224320cf27 100644 (file)
@@ -14,7 +14,7 @@
 #define COMMAND_INSET_H
 
 #include "math_nestinset.h"
-#include "insets/renderers.h"
+#include "insets/render_button.h"
 
 
 /// Inset for things like \name[options]{contents}
@@ -33,18 +33,20 @@ public:
        //
        // void infoize(std::ostream & os) const;
        ///
-       dispatch_result dispatch(FuncRequest const & cmd, idx_type & idx, pos_type & pos);
-       ///
        virtual std::string const screenLabel() const;
        /// generate something that will be understood by the Dialogs.
        std::string const createDialogStr(std::string const & name) const;
 
        std::string const & commandname() const { return name_; }
-
+protected:
+       ///
+       virtual
+       DispatchResult
+       priv_dispatch(LCursor & cur, FuncRequest const & cmd);
 private:
        std::string name_;
        mutable bool set_label_;
-       mutable ButtonRenderer button_;
+       mutable RenderButton button_;
 };
 
 #endif