]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/xforms/FormPreamble.C
Introduce LFUN_PRINT.
[lyx.git] / src / frontends / xforms / FormPreamble.C
index 544b5e6b480b961f33a09f6cd47b14a4fb2d8e6d..ff1fb401f51d58406aa0a224882f8a40fc9a501a 100644 (file)
@@ -1,59 +1,56 @@
-// -*- C++ -*-
 /**
  * \file FormPreamble.C
- * Copyright 2001 The LyX Team.
- * See the file COPYING.
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- * \author Edwin Leuven, leuven@fee.uva.nl
+ * \author Edwin Leuven
+ *
+ * Full author contact details are available in file CREDITS.
  */
 
 #include <config.h>
 
-#ifdef __GNUG__
-#pragma implementation
-#endif
-
-#include "xformsBC.h"
-#include "ControlPreamble.h"
 #include "FormPreamble.h"
-#include "form_preamble.h"
+#include "ControlPreamble.h"
+#include "forms/form_preamble.h"
+
 #include "xforms_helpers.h"
+#include "xformsBC.h"
+
+#include "lyx_forms.h"
 
-typedef FormCB<ControlPreamble, FormDB<FD_form_preamble> > base_class;
 
-FormPreamble::FormPreamble(ControlPreamble & c)
-       : base_class(c, _("LaTeX preamble"))
+typedef FormCB<ControlPreamble, FormDB<FD_preamble> > base_class;
+
+FormPreamble::FormPreamble()
+       : base_class(_("LaTeX Preamble"))
 {}
 
 
 void FormPreamble::build()
 {
-       dialog_.reset(build_preamble());
-   
-       fl_set_input_return(dialog_->input_preamble, FL_RETURN_CHANGED);
+       dialog_.reset(build_preamble(this));
 
        // Manage the ok, apply and cancel/close buttons
-       bc().setOK(dialog_->button_ok);
-       bc().setApply(dialog_->button_apply);
-       bc().setCancel(dialog_->button_cancel);
-       bc().addReadOnly(dialog_->input_preamble);
+       bcview().setOK(dialog_->button_ok);
+       bcview().setApply(dialog_->button_apply);
+       bcview().setCancel(dialog_->button_close);
+
+       // trigger an input event for cut&paste with middle mouse button.
+       setPrehandler(dialog_->input_preamble);
+
+       // for activate ok/apply immediately upon input
+       fl_set_input_return(dialog_->input_preamble, FL_RETURN_CHANGED);
 }
 
 
 void FormPreamble::apply()
 {
-       controller().params() = fl_get_input(dialog_->input_preamble);
+       controller().params(getString(dialog_->input_preamble));
 }
 
 
 void FormPreamble::update()
 {
        fl_set_input(dialog_->input_preamble, controller().params().c_str());
-
-       bool const enable = (!controller().isReadonly());
-       setEnabled(dialog_->input_preamble, enable);
-       setEnabled(dialog_->button_ok,      enable);
-       setEnabled(dialog_->button_apply,   enable);
 }
-
-