]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetcommand.h
Enable the external inset to handle unknown templates gracefully.
[lyx.git] / src / insets / insetcommand.h
index 8ddee55aa22edc025e9620c8eb9c9970990f18d9..a3e14b818a40d73603971f2fe88095bcd5634052 100644 (file)
@@ -16,7 +16,7 @@
 
 #include "insetbutton.h"
 #include "insetcommandparams.h"
-#include <boost/signals/signal0.hpp>
+#include "mailinset.h"
 #include <boost/utility.hpp>
 
 // Created by Alejandro 970222
@@ -31,9 +31,9 @@ class InsetCommand : public InsetButton, boost::noncopyable {
 public:
        ///
        explicit
-       InsetCommand(InsetCommandParams const &, bool same_id = false);
+       InsetCommand(InsetCommandParams const &);
        ///
-       virtual ~InsetCommand() { hideDialog(); }
+       InsetCommand(InsetCommand const &);
        ///
        void write(Buffer const *, std::ostream & os) const
                { p_.write(os); }
@@ -44,7 +44,7 @@ public:
        void scanCommand(string const & c) { p_.scanCommand(c); };
        ///
        virtual int latex(Buffer const *, std::ostream &,
-                         bool fragile, bool free_spc) const;
+                         LatexRunParams const &) const;
        ///
        int ascii(Buffer const *, std::ostream &, int linelen) const;
        ///
@@ -73,11 +73,35 @@ public:
        ///
        void setParams(InsetCommandParams const &);
        ///
-       boost::signal0<void> hideDialog;
+       virtual dispatch_result localDispatch(FuncRequest const & cmd);
 
 private:
        ///
        InsetCommandParams p_;
 };
 
+
+class InsetCommandMailer : public MailInset {
+public:
+       ///
+       InsetCommandMailer(string const & name, InsetCommand & inset);
+       ///
+       virtual InsetBase & inset() const { return inset_; }
+       ///
+       virtual string const & name() const { return name_; }
+       ///
+       virtual string const inset2string() const;
+       ///
+       static void string2params(string const &, InsetCommandParams &);
+       ///
+       static string const params2string(string const & name,
+                                         InsetCommandParams const &);
+private:
+       ///
+       string const name_;
+       ///
+       InsetCommand & inset_;
+};
+
+
 #endif