]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/FormPreamble.C
remove defaults stuff, let Qt handle no toolbar
[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
14 #include "xformsBC.h"
15 #include "ControlPreamble.h"
16 #include "FormPreamble.h"
17 #include "forms/form_preamble.h"
18 #include "xforms_helpers.h"
19
20 #include FORMS_H_LOCATION
21
22 typedef FormCB<ControlPreamble, FormDB<FD_preamble> > base_class;
23
24 FormPreamble::FormPreamble()
25         : base_class(_("LaTeX preamble"))
26 {}
27
28
29 void FormPreamble::build()
30 {
31         dialog_.reset(build_preamble(this));
32
33         // Manage the ok, apply and cancel/close buttons
34         bcview().setOK(dialog_->button_ok);
35         bcview().setApply(dialog_->button_apply);
36         bcview().setCancel(dialog_->button_close);
37
38         // trigger an input event for cut&paste with middle mouse button.
39         setPrehandler(dialog_->input_preamble);
40
41         // for activate ok/apply immediately upon input
42         fl_set_input_return(dialog_->input_preamble, FL_RETURN_CHANGED);
43 }
44
45
46 void FormPreamble::apply()
47 {
48         controller().params(getString(dialog_->input_preamble));
49 }
50
51
52 void FormPreamble::update()
53 {
54         fl_set_input(dialog_->input_preamble, controller().params().c_str());
55 }