]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/FormPreamble.C
change some __GNUG_ to __GNUG__
[lyx.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         // trigger an input event when pasting using the middle mouse button.
35         setPrehandler(dialog_->input_preamble);
36
37         // Manage the ok, apply and cancel/close buttons
38         bc().setOK(dialog_->button_ok);
39         bc().setApply(dialog_->button_apply);
40         bc().setCancel(dialog_->button_close);
41 }
42
43
44 void FormPreamble::apply()
45 {
46         controller().params() = fl_get_input(dialog_->input_preamble);
47 }
48
49
50 void FormPreamble::update()
51 {
52         fl_set_input(dialog_->input_preamble, controller().params().c_str());
53 }