]> 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 6842f1071d703cb631c61a10ab1a5fd97e57b32d..8872cfec91fb25fe02808a3405f3375af3f5d910 100644 (file)
@@ -24,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;
@@ -37,11 +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_; }
 private:
+       virtual std::auto_ptr<InsetBase> doClone() const;
+
+       ///
        std::string name_;
+       ///
        mutable bool set_label_;
+       ///
        mutable RenderButton button_;
 };