]> 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 d111d58acb42b5f83120853f02667da0093cf6e9..8872cfec91fb25fe02808a3405f3375af3f5d910 100644 (file)
 #define COMMAND_INSET_H
 
 #include "math_nestinset.h"
-#include "insets/renderers.h"
+
+#include "insets/render_button.h"
 
 
 /// Inset for things like \name[options]{contents}
 class CommandInset : public MathNestInset {
 public:
        ///
-       explicit CommandInset(string const & name);
-       ///
-       virtual std::auto_ptr<InsetBase> clone() const;
+       explicit CommandInset(std::string const & name);
        ///
        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;
        ///
-       dispatch_result dispatch(FuncRequest const & cmd, idx_type & idx, pos_type & pos);
-       ///
-       virtual string const screenLabel() const;
+       virtual std::string const screenLabel() const;
        /// generate something that will be understood by the Dialogs.
-       string const createDialogStr(string const & name) const;
-
-       string const & commandname() const { return name_; }
-
+       std::string const createDialogStr(std::string const & name) const;
+       ///
+       std::string const & commandname() const { return name_; }
 private:
-       string name_;
+       virtual std::auto_ptr<InsetBase> doClone() const;
+
+       ///
+       std::string name_;
+       ///
        mutable bool set_label_;
-       mutable ButtonRenderer button_;
+       ///
+       mutable RenderButton button_;
 };
 
 #endif