]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/FormWrap.C
move the title_ string to the base class Dialog::View
[lyx.git] / src / frontends / xforms / FormWrap.C
1 /**
2  * \file FormWrap.C
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Dekel Tsur
7  *
8  * Full author contact details are available in file CREDITS
9  */
10
11 #include <config.h>
12
13 #include "xformsBC.h"
14 #include "ControlWrap.h"
15 #include "FormWrap.h"
16 #include "forms/form_wrap.h"
17 #include "Tooltips.h"
18
19 #include "helper_funcs.h"
20 #include "xforms_helpers.h"
21 #include "checkedwidgets.h"
22
23 #include "insets/insetwrap.h"
24 #include "support/lstrings.h"
25 #include "lyx_forms.h"
26 #include "support/tostr.h"
27
28
29 typedef FormController<ControlWrap, FormView<FD_wrap> > base_class;
30
31
32 FormWrap::FormWrap(Dialog & parent)
33         : base_class(parent, _("Text Wrap Settings"))
34 {}
35
36
37 void FormWrap::build()
38 {
39         dialog_.reset(build_wrap(this));
40
41         // Manage the ok, apply 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         // disable for read-only documents
48         bcview().addReadOnly(dialog_->input_width);
49         bcview().addReadOnly(dialog_->choice_width_units);
50
51         // check validity of "length + unit" input
52         addCheckedGlueLength(bcview(), dialog_->input_width);
53
54         // trigger an input event for cut&paste with middle mouse button.
55         setPrehandler(dialog_->input_width);
56
57         fl_set_input_return(dialog_->input_width, FL_RETURN_CHANGED);
58
59         string const choice = getStringFromVector(getLatexUnits(), "|");
60         fl_addto_choice(dialog_->choice_width_units,
61                         subst(choice, "%", "%%").c_str());
62
63         placement_.init(dialog_->radio_default, 0); // default
64         placement_.init(dialog_->radio_outer, 'p');
65         placement_.init(dialog_->radio_left,  'l');
66         placement_.init(dialog_->radio_right, 'r');
67
68         // set up the tooltips
69         string str = _("Enter width for the float.");
70         tooltips().init(dialog_->input_width, str);
71         str = _("Forces float to the right in a paragraph if the page number "
72                 "is odd, and to the left if page number is even.");
73         tooltips().init(dialog_->radio_default, str);
74         str = _("Forces float to the left in a paragraph if the pagenumber "
75                 "is odd, and to the right if page number is even.");
76         tooltips().init(dialog_->radio_outer, str);
77         str = _("Forces float to the left in the paragraph.");
78         tooltips().init(dialog_->radio_left, str);
79         str = _("Forces float to the right in the paragraph.");
80         tooltips().init(dialog_->radio_right, str);
81 }
82
83
84 void FormWrap::apply()
85 {
86         InsetWrapParams & params = controller().params();
87
88         params.width =
89                 LyXLength(getLengthFromWidgets(dialog_->input_width,
90                                                dialog_->choice_width_units));
91
92         char const c = static_cast<char>(placement_.get());
93         if (c)
94                 params.placement = c;
95         else
96                 params.placement.erase(); // default
97 }
98
99
100 void FormWrap::update()
101 {
102         InsetWrapParams const & params = controller().params();
103         LyXLength len(params.width);
104         fl_set_input(dialog_->input_width, tostr(len.value()).c_str());
105         fl_set_choice(dialog_->choice_width_units, len.unit() + 1);
106
107         if (params.placement.empty())
108                 placement_.set(dialog_->radio_default); // default
109         else
110                 placement_.set(params.placement.c_str()[0]);
111 }