]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/FormPreamble.C
Yet more dialog tweaking from Rob.
[lyx.git] / src / frontends / xforms / FormPreamble.C
1 /**
2  * \file FormPreamble.C
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Edwin Leuven
7  *
8  * Full author contact details are available in file CREDITS
9  */
10
11 #include <config.h>
12
13 #ifdef __GNUG__
14 #pragma implementation
15 #endif
16
17 #include "xformsBC.h"
18 #include "ControlPreamble.h"
19 #include "FormPreamble.h"
20 #include "forms/form_preamble.h"
21 #include "xforms_helpers.h"
22 #include FORMS_H_LOCATION
23
24 typedef FormCB<ControlPreamble, FormDB<FD_preamble> > base_class;
25
26 FormPreamble::FormPreamble()
27         : base_class(_("LaTeX preamble"))
28 {}
29
30
31 void FormPreamble::build()
32 {
33         dialog_.reset(build_preamble(this));
34
35         fl_set_input_return(dialog_->input_preamble, FL_RETURN_CHANGED);
36
37         // trigger an input event when pasting using the middle mouse button.
38         setPrehandler(dialog_->input_preamble);
39
40         // Manage the ok, apply and cancel/close buttons
41         bc().setOK(dialog_->button_ok);
42         bc().setApply(dialog_->button_apply);
43         bc().setCancel(dialog_->button_close);
44 }
45
46
47 void FormPreamble::apply()
48 {
49         controller().params() = fl_get_input(dialog_->input_preamble);
50 }
51
52
53 void FormPreamble::update()
54 {
55         fl_set_input(dialog_->input_preamble, controller().params().c_str());
56 }