]> git.lyx.org Git - features.git/blob - src/frontends/xforms/FormPreamble.C
two small fixes from John
[features.git] / src / frontends / xforms / FormPreamble.C
1 /**
2  * \file FormPreamble.C
3  * Copyright 2001 The LyX Team.
4  * See the file COPYING.
5  *
6  * \author Edwin Leuven, leuven@fee.uva.nl
7  */
8
9 #include <config.h>
10
11 #ifdef __GNUG__
12 #pragma implementation
13 #endif
14
15 #include "xformsBC.h"
16 #include "ControlPreamble.h"
17 #include "FormPreamble.h"
18 #include "form_preamble.h"
19 #include "xforms_helpers.h"
20
21 typedef FormCB<ControlPreamble, FormDB<FD_form_preamble> > base_class;
22
23 FormPreamble::FormPreamble(ControlPreamble & c)
24         : base_class(c, _("LaTeX preamble"))
25 {}
26
27
28 void FormPreamble::build()
29 {
30         dialog_.reset(build_preamble());
31    
32         fl_set_input_return(dialog_->input_preamble, FL_RETURN_CHANGED);
33
34         // Manage the ok, apply and cancel/close buttons
35         bc().setOK(dialog_->button_ok);
36         bc().setApply(dialog_->button_apply);
37         bc().setCancel(dialog_->button_cancel);
38 }
39
40
41 void FormPreamble::apply()
42 {
43         controller().params() = fl_get_input(dialog_->input_preamble);
44 }
45
46
47 void FormPreamble::update()
48 {
49         fl_set_input(dialog_->input_preamble, controller().params().c_str());
50 }