]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/command_inset.h
some (yet unfinished) up/down work
[lyx.git] / src / mathed / command_inset.h
index 772f88054b95b95c73a518e48656ed710f5945b3..b0de073df565ac55419f8a303c6b176dca587c27 100644 (file)
@@ -1,25 +1,51 @@
+// -*- C++ -*-
+/**
+ * \file command_inset.h
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
+ *
+ * \author André Pönitz
+ *
+ * Full author contact details are available in file CREDITS.
+ */
+
+
 #ifndef COMMAND_INSET_H
 #define COMMAND_INSET_H
 
-#include "button_inset.h"
+#include "math_nestinset.h"
+
+#include "insets/render_button.h"
 
-// for things like \name[options]{contents}
-class CommandInset : public ButtonInset {
+
+/// Inset for things like \name[options]{contents}
+class CommandInset : public MathNestInset {
 public:
-       /// name, contents, options deliminited by '|++|'
-       explicit CommandInset(string const & data);
        ///
-       MathInset * clone() const;
+       explicit CommandInset(std::string const & name);
+       ///
+       void metrics(MetricsInfo & mi, Dimension & dim) const;
+       ///
+       void draw(PainterInfo & pi, int x, int y) const;
        ///
        void write(WriteStream & os) const;
+       //
+       // void infoize(std::ostream & os) const;
        ///
-       //void infoize(std::ostream & os) const;
+       virtual std::string const screenLabel() const;
+       /// generate something that will be understood by the Dialogs.
+       std::string const createDialogStr(std::string const & name) const;
        ///
-       //int dispatch(string const & cmd, idx_type idx, pos_type pos);
+       std::string const & commandname() const { return name_; }
+private:
+       virtual std::auto_ptr<InsetBase> doClone() const;
+
        ///
-       string screenLabel() const;
-public:
-       string name_;
+       std::string name_;
+       ///
+       mutable bool set_label_;
+       ///
+       mutable RenderButton button_;
 };
 
 #endif