]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/command_inset.h
Andreas' patch to prevent crash on click on previewd inset
[lyx.git] / src / mathed / command_inset.h
index 75090caa551faa2f6ebb368f4c46406977e71aec..b0de073df565ac55419f8a303c6b176dca587c27 100644 (file)
@@ -14,7 +14,8 @@
 #define COMMAND_INSET_H
 
 #include "math_nestinset.h"
-#include "insets/renderers.h"
+
+#include "insets/render_button.h"
 
 
 /// Inset for things like \name[options]{contents}
@@ -23,8 +24,6 @@ public:
        ///
        explicit CommandInset(std::string const & name);
        ///
-       virtual std::auto_ptr<InsetBase> clone() const;
-       ///
        void metrics(MetricsInfo & mi, Dimension & dim) const;
        ///
        void draw(PainterInfo & pi, int x, int y) const;
@@ -33,18 +32,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_; }
-
 private:
+       virtual std::auto_ptr<InsetBase> doClone() const;
+
+       ///
        std::string name_;
+       ///
        mutable bool set_label_;
-       mutable ButtonRenderer button_;
+       ///
+       mutable RenderButton button_;
 };
 
 #endif