]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/xforms/FormPreamble.C
Yet more dialog tweaking from Rob.
[lyx.git] / src / frontends / xforms / FormPreamble.C
index eed32d8163b276d9a68bce7aa084f4effa6bfddd..189ed052fa8d1e7b61455011804e3fe6d867b376 100644 (file)
@@ -1,9 +1,11 @@
 /**
  * \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>
 #include "xformsBC.h"
 #include "ControlPreamble.h"
 #include "FormPreamble.h"
-#include "form_preamble.h"
+#include "forms/form_preamble.h"
 #include "xforms_helpers.h"
+#include FORMS_H_LOCATION
 
-typedef FormCB<ControlPreamble, FormDB<FD_form_preamble> > base_class;
+typedef FormCB<ControlPreamble, FormDB<FD_preamble> > base_class;
 
-FormPreamble::FormPreamble(ControlPreamble & c)
-       : base_class(c, _("LaTeX preamble"))
+FormPreamble::FormPreamble()
+       : base_class(_("LaTeX preamble"))
 {}
 
 
 void FormPreamble::build()
 {
-       dialog_.reset(build_preamble());
-   
+       dialog_.reset(build_preamble(this));
+
        fl_set_input_return(dialog_->input_preamble, FL_RETURN_CHANGED);
 
+       // trigger an input event when pasting using the middle mouse button.
+       setPrehandler(dialog_->input_preamble);
+
        // Manage the ok, apply and cancel/close buttons
        bc().setOK(dialog_->button_ok);
        bc().setApply(dialog_->button_apply);
-       bc().setCancel(dialog_->button_cancel);
+       bc().setCancel(dialog_->button_close);
 }