]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/controllers/ControlSendto.h
fix crash due to invalidated iterator
[lyx.git] / src / frontends / controllers / ControlSendto.h
index 073e37e066226649c275070d3213bd69100fc20a..55c38ceae539959dd51b126dc5185d5311d5b424 100644 (file)
@@ -6,29 +6,36 @@
  *
  * \author Angus Leeming
  *
- * Full author contact details are available in file CREDITS
+ * Full author contact details are available in file CREDITS.
  */
 
 #ifndef CONTROLSENDTO_H
 #define CONTROLSENDTO_H
 
-#ifdef __GNUG__
-#pragma interface
-#endif
-
-#include "ControlDialog_impl.h"
-#include "LString.h"
-
+#include "Dialog.h"
 #include <vector>
 
 class Format;
 
+namespace lyx {
+namespace frontend {
+
 /** A controller for the Custom Export dialogs.
  */
-class ControlSendto : public ControlDialogBD {
+class ControlSendto : public Dialog::Controller {
 public:
        ///
-       ControlSendto(LyXView &, Dialogs &);
+       ControlSendto(Dialog &);
+       ///
+       virtual bool initialiseParams(std::string const & data);
+       ///
+       virtual void clearParams() {}
+       ///
+       virtual void dispatchParams();
+       ///
+       virtual bool isBufferDependent() const { return true; }
+       ///
+       virtual kb_action getLfun() const { return LFUN_EXPORT_CUSTOM; }
 
        /// Return a vector of those formats that can be exported from "lyx".
        std::vector<Format const *> const allFormats() const;
@@ -38,15 +45,16 @@ public:
        void setFormat(Format const *);
 
        /// The command to be executed
-       string const getCommand() const { return command_; };
-       void setCommand(string const &);
+       std::string const getCommand() const { return command_; };
+       void setCommand(std::string const &);
 private:
-       ///
-       virtual void apply();
        ///
        Format const * format_;
        ///
-       string command_;
+       std::string command_;
 };
 
+} // namespace frontend
+} // namespace lyx
+
 #endif // CONTROLSENDTO_H