]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/xforms/FormSendto.C
Introduce LFUN_PRINT.
[lyx.git] / src / frontends / xforms / FormSendto.C
index e94a4f5dd36765a5af099795652a26b14edbfe31..b1b08ffdcb6c2d7f24c92dfcdebf66aa83df7cb5 100644 (file)
@@ -1,34 +1,39 @@
 /**
  * \file FormSendto.C
- * Read the file COPYING
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- * \author Angus Leeming 
+ * \author Angus Leeming
  *
- * Full author contact details are available in file CREDITS
+ * Full author contact details are available in file CREDITS.
  */
 
 #include <config.h>
 
-#ifdef __GNUG__
-#pragma implementation
-#endif
-
 #include "FormSendto.h"
-#include "forms/form_sendto.h"
 #include "ControlSendto.h"
-#include "xformsBC.h"
+#include "forms/form_sendto.h"
+
 #include "Tooltips.h"
 #include "xforms_helpers.h"
-#include "converter.h"
-#include "gettext.h"
-#include FORMS_H_LOCATION
+#include "xformsBC.h"
+
+#include "format.h"
+
+#include "support/lstrings.h"
+
+#include "lyx_forms.h"
+
+using lyx::support::trim;
 
 using std::vector;
+using std::string;
+
 
-typedef FormCB<ControlSendto, FormDB<FD_sendto> > base_class;
+typedef FormController<ControlSendto, FormView<FD_sendto> > base_class;
 
-FormSendto::FormSendto()
-       : base_class(_("Send document to command"))
+FormSendto::FormSendto(Dialog & parent)
+       : base_class(parent, _("Send document to command"))
 {}
 
 
@@ -40,9 +45,9 @@ void FormSendto::build()
        setPrehandler(dialog_->input_command);
 
        // Manage the ok, apply, restore and cancel/close buttons
-       bc().setOK(dialog_->button_ok);
-       bc().setApply(dialog_->button_apply);
-       bc().setCancel(dialog_->button_close);
+       bcview().setOK(dialog_->button_ok);
+       bcview().setApply(dialog_->button_apply);
+       bcview().setCancel(dialog_->button_close);
 
        // Set up the tooltip mechanism
        string str = _("Export the buffer to this format before running the command below on it.");