]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/command_inset.h
Fix to bug 2362: Deleting superscript also deletes subscript.
[lyx.git] / src / mathed / command_inset.h
index c9739b48e26cce88e39f2d9a488cce2712afcf57..8872cfec91fb25fe02808a3405f3375af3f5d910 100644 (file)
@@ -14,6 +14,7 @@
 #define COMMAND_INSET_H
 
 #include "math_nestinset.h"
+
 #include "insets/render_button.h"
 
 
@@ -23,12 +24,12 @@ 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;
        ///
+       InsetBase * editXY(LCursor &, int, int);
+       ///
        void write(WriteStream & os) const;
        //
        // void infoize(std::ostream & os) const;
@@ -36,16 +37,16 @@ public:
        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(FuncRequest const & cmd, idx_type & idx, pos_type & pos);
+       std::string const & commandname() const { return name_; }
 private:
+       virtual std::auto_ptr<InsetBase> doClone() const;
+
+       ///
        std::string name_;
+       ///
        mutable bool set_label_;
+       ///
        mutable RenderButton button_;
 };