]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/FormText.C
Replace 'using namespace abc;' with 'using abc::xyz;'
[lyx.git] / src / frontends / xforms / FormText.C
1 /**
2  * \file FormText.C
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Angus Leeming
7  *
8  * Full author contact details are available in file CREDITS.
9  */
10
11 #include <config.h>
12
13 #include "FormText.h"
14 #include "ControlCommand.h"
15 #include "forms/form_text.h"
16
17 #include "xformsBC.h"
18 #include "forms_gettext.h"
19
20 #include "controllers/ButtonController.h"
21
22 #include "support/lstrings.h"
23
24 #include "lyx_forms.h"
25
26 using lyx::support::trim;
27
28
29 typedef FormController<ControlCommand, FormView<FD_text> > base_class;
30
31 FormText::FormText(Dialog & parent, string const & title, string const & label)
32         : base_class(parent, title), label_(label)
33 {}
34
35
36 void FormText::build()
37 {
38         dialog_.reset(build_text(this));
39
40         fl_set_input_return(dialog_->input_text, FL_RETURN_CHANGED);
41         setPrehandler(dialog_->input_text);
42
43         fl_set_object_label(dialog_->input_text, idex(label_).c_str());
44         fl_set_button_shortcut(dialog_->input_text, scex(label_).c_str(), 1);
45
46         // Manage the ok, apply, restore and cancel/close buttons
47         bcview().setOK(dialog_->button_ok);
48         bcview().setApply(dialog_->button_apply);
49         bcview().setCancel(dialog_->button_close);
50         bcview().setRestore(dialog_->button_restore);
51
52         bcview().addReadOnly(dialog_->input_text);
53 }
54
55
56 void FormText::update()
57 {
58         string const contents = trim(controller().params().getContents());
59         fl_set_input(dialog_->input_text, contents.c_str());
60
61         bc().valid(!contents.empty());
62 }
63
64
65 void FormText::apply()
66 {
67         controller().params().setContents(fl_get_input(dialog_->input_text));
68 }