]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/FormText.C
remove defaults stuff, let Qt handle no toolbar
[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 "xformsBC.h"
14 #include "ButtonController.h"
15 #include "ControlCommand.h"
16 #include "FormText.h"
17 #include "forms/form_text.h"
18 #include "forms_gettext.h"
19
20 #include "support/lstrings.h"
21
22 #include FORMS_H_LOCATION
23
24 typedef FormController<ControlCommand, FormView<FD_text> > base_class;
25
26 FormText::FormText(Dialog & parent, string const & title, string const & label)
27         : base_class(parent, title), label_(label)
28 {}
29
30
31 void FormText::build()
32 {
33         dialog_.reset(build_text(this));
34
35         fl_set_input_return(dialog_->input_text, FL_RETURN_CHANGED);
36         setPrehandler(dialog_->input_text);
37
38         fl_set_object_label(dialog_->input_text, idex(label_).c_str());
39         fl_set_button_shortcut(dialog_->input_text, scex(label_).c_str(), 1);
40
41         // Manage the ok, apply, restore and cancel/close buttons
42         bcview().setOK(dialog_->button_ok);
43         bcview().setApply(dialog_->button_apply);
44         bcview().setCancel(dialog_->button_close);
45         bcview().setRestore(dialog_->button_restore);
46
47         bcview().addReadOnly(dialog_->input_text);
48 }
49
50
51 void FormText::update()
52 {
53         string const contents = trim(controller().params().getContents());
54         fl_set_input(dialog_->input_text, contents.c_str());
55
56         bc().valid(!contents.empty());
57 }
58
59
60 void FormText::apply()
61 {
62         controller().params().setContents(fl_get_input(dialog_->input_text));
63 }