]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetcommand.h
Final touch 'inset display()'; fix 'is a bit silly' bug
[lyx.git] / src / insets / insetcommand.h
index ec9003b03fba6a19e9f8e7778d79188abe3e6b38..969f987da073b53f902ec245907b8b9b6acc5625 100644 (file)
@@ -7,20 +7,17 @@
  * \author Angus Leeming
  * \author Lars Gullik Bjønnes
  *
- * Full author contact details are available in file CREDITS
+ * Full author contact details are available in file CREDITS.
  */
 
 #ifndef INSET_LATEXCOMMAND_H
 #define INSET_LATEXCOMMAND_H
 
-#ifdef __GNUG__
-#pragma interface
-#endif
 
-#include "insetbutton.h"
+#include "inset.h"
 #include "insetcommandparams.h"
-#include <boost/signals/signal0.hpp>
-#include <boost/utility.hpp>
+#include "render_button.h"
+#include "mailinset.h"
 
 // Created by Alejandro 970222
 /** Used to insert a LaTeX command automatically
  */
 
 ///
-class InsetCommand : public InsetButton, boost::noncopyable {
+class InsetCommand : public InsetOld {
 public:
        ///
        explicit
-       InsetCommand(InsetCommandParams const &, bool same_id = false);
+       InsetCommand(InsetCommandParams const &);
+       ///
+       void metrics(MetricsInfo &, Dimension &) const;
        ///
-       virtual ~InsetCommand() { hideDialog(); }
+       void draw(PainterInfo & pi, int x, int y) const;
        ///
-       void write(Buffer const *, std::ostream & os) const
+       void write(Buffer const &, std::ostream & os) const
                { p_.write(os); }
        ///
-       virtual void read(Buffer const *, LyXLex & lex)
+       virtual void read(Buffer const &, LyXLex & lex)
                { p_.read(lex); }
        /// Can remove one InsetBibKey is modified
-       void scanCommand(string const & c) { p_.scanCommand(c); };
+       void scanCommand(std::string const & c) { p_.scanCommand(c); };
        ///
-       virtual int latex(Buffer const *, std::ostream &,
-                         bool fragile, bool free_spc) const;
+       virtual int latex(Buffer const &, std::ostream &,
+                         LatexRunParams const &) const;
        ///
-       int ascii(Buffer const *, std::ostream &, int linelen) const;
+       int ascii(Buffer const &, std::ostream &, int linelen) const;
        ///
-       virtual int linuxdoc(Buffer const *, std::ostream &) const;
+       virtual int linuxdoc(Buffer const &, std::ostream &) const;
        ///
-       virtual int docbook(Buffer const *, std::ostream &, bool) const;
+       virtual int docbook(Buffer const &, std::ostream &, bool) const;
        ///
-       Inset::Code lyxCode() const { return Inset::NO_CODE; }
-
+       InsetOld::Code lyxCode() const { return InsetOld::NO_CODE; }
        ///
-       string const getCommand() const { return p_.getCommand(); }
+       virtual bool display() const { return true; }
+       
        ///
-       string const & getCmdName() const { return p_.getCmdName(); }
+       InsetCommandParams const & params() const { return p_; }
        ///
-       string const & getOptions() const { return p_.getOptions(); }
+       std::string const & getContents() const { return p_.getContents(); }
        ///
-       string const & getContents() const { return p_.getContents(); }
+       void setContents(std::string const & c) { p_.setContents(c); }
        ///
-       void setCmdName(string const & n) { p_.setCmdName(n); }
+       std::string const & getOptions() const { return p_.getOptions(); }
        ///
-       void setOptions(string const & o) { p_.setOptions(o); }
+       RenderButton & button() const { return button_; }
+
+protected:
        ///
-       void setContents(string const & c) { p_.setContents(c); }
+       virtual
+       dispatch_result
+       priv_dispatch(FuncRequest const & cmd, idx_type &, pos_type &);
        ///
-       InsetCommandParams const & params() const { return p_; }
+       std::string const getCommand() const { return p_.getCommand(); }
        ///
-       void setParams(InsetCommandParams const &);
+       std::string const & getCmdName() const { return p_.getCmdName(); }
+       ///
+       void setCmdName(std::string const & n) { p_.setCmdName(n); }
+       ///
+       void setOptions(std::string const & o) { p_.setOptions(o); }
        ///
-       boost::signal0<void> hideDialog;
+       void setParams(InsetCommandParams const &);
+       /// This should provide the text for the button
+       virtual std::string const getScreenLabel(Buffer const &) const = 0;
 
 private:
        ///
        InsetCommandParams p_;
+       mutable bool set_label_;
+       mutable RenderButton button_;
+};
+
+
+class InsetCommandMailer : public MailInset {
+public:
+       ///
+       InsetCommandMailer(std::string const & name, InsetCommand & inset);
+       ///
+       virtual InsetBase & inset() const { return inset_; }
+       ///
+       virtual std::string const & name() const { return name_; }
+       ///
+       virtual std::string const inset2string(Buffer const &) const;
+       ///
+       static void string2params(std::string const &, InsetCommandParams &);
+       ///
+       static std::string const params2string(std::string const & name,
+                                         InsetCommandParams const &);
+private:
+       ///
+       std::string const name_;
+       ///
+       InsetCommand & inset_;
 };
 
+
 #endif