]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/FormRef.C
Nothing but a changed email address (trying to factor my tree in in small steps)
[lyx.git] / src / frontends / xforms / FormRef.C
1 /**
2  * \file xforms/FormRef.C
3  * Copyright 2000-2001 The LyX Team.
4  * See the file COPYING.
5  *
6  * \author Angus Leeming <leeming@lyx.org>
7  */
8
9 #include <config.h>
10 #include <algorithm>
11
12 #ifdef __GNUG__
13 #pragma implementation
14 #endif
15
16 #include "xformsBC.h"
17 #include "ControlRef.h"
18 #include "FormRef.h"
19 #include "forms/form_ref.h"
20 #include "xforms_helpers.h"
21 #include "insets/insetref.h"
22 #include "helper_funcs.h" // getStringFromVector
23 #include "support/lstrings.h" // frontStrip, strip
24 #include FORMS_H_LOCATION
25
26 using std::find;
27 using std::max;
28 using std::sort;
29 using std::vector;
30
31 typedef FormCB<ControlRef, FormDB<FD_ref> > base_class;
32
33 FormRef::FormRef()
34         : base_class(_("Reference")),
35           at_ref_(false)
36 {}
37
38
39 void FormRef::build()
40 {
41         dialog_.reset(build_ref(this));
42
43         for (int i = 0; !InsetRef::types[i].latex_name.empty(); ++i)
44                 fl_addto_choice(dialog_->choice_type,
45                                 _(InsetRef::types[i].gui_name.c_str()));
46
47         // Force the user to use the browser to change refs.
48         fl_deactivate_object(dialog_->input_ref);
49
50         fl_set_input_return(dialog_->input_name, FL_RETURN_CHANGED);
51         fl_set_input_return(dialog_->input_ref,  FL_RETURN_CHANGED);
52
53         setPrehandler(dialog_->input_name);
54         setPrehandler(dialog_->input_ref);
55
56         // Manage the ok and cancel/close buttons
57         bc().setOK(dialog_->button_ok);
58         bc().setApply(dialog_->button_apply);
59         bc().setCancel(dialog_->button_close);
60         bc().setRestore(dialog_->button_restore);
61
62         bc().addReadOnly(dialog_->button_update);
63         bc().addReadOnly(dialog_->input_name);
64         bc().addReadOnly(dialog_->input_ref);
65 }
66
67
68 void FormRef::update()
69 {
70         fl_set_input(dialog_->input_ref,
71                      controller().params().getContents().c_str());
72         fl_set_input(dialog_->input_name,
73                      controller().params().getOptions().c_str());
74         fl_set_choice(dialog_->choice_type,
75                       InsetRef::getType(controller().params().getCmdName()) + 1);
76
77         at_ref_ = false;
78         fl_set_object_label(dialog_->button_go, _("Go to reference"));
79
80         // Name is irrelevant to LaTeX/Literate documents
81         if (controller().docType() == ControlRef::LATEX ||
82             controller().docType() == ControlRef::LITERATE) {
83                 setEnabled(dialog_->input_name, false);
84         } else {
85                 setEnabled(dialog_->input_name, true);
86         }
87
88         // type is irrelevant to LinuxDoc/DocBook.
89         if (controller().docType() == ControlRef::LINUXDOC ||
90             controller().docType() == ControlRef::DOCBOOK) {
91                 fl_set_choice(dialog_->choice_type, 1);
92                 setEnabled(dialog_->choice_type, false);
93         } else {
94                 setEnabled(dialog_->choice_type, true);
95         }
96
97         // Get the available buffers
98         vector<string> const buffers = controller().getBufferList();
99         vector<string> const choice_buffers =
100                 getVector(dialog_->choice_buffer);
101
102         // If different from the current contents of the choice, then update it
103         if (buffers != choice_buffers) {
104                 // create a string of entries " entry1 | entry2 | entry3 "
105                 // with which to initialise the xforms choice object.
106                 string const choice =
107                         " " + getStringFromVector(buffers, " | ") + " ";
108
109                 fl_clear_choice(dialog_->choice_buffer);
110                 fl_addto_choice(dialog_->choice_buffer, choice.c_str());
111
112                 fl_set_choice(dialog_->choice_buffer,
113                               controller().getBufferNum() + 1);
114         }
115
116         refs_ = controller().getLabelList(string());
117         updateBrowser(refs_);
118 }
119
120
121 void FormRef::updateBrowser(vector<string> const & akeys) const
122 {
123         vector<string> keys(akeys);
124         if (fl_get_button(dialog_->check_sort))
125                 sort(keys.begin(), keys.end());
126
127         vector<string> browser_keys = getVector(dialog_->browser_refs);
128
129         if (browser_keys == keys)
130                 return;
131
132         fl_clear_browser(dialog_->browser_refs);
133         for (vector<string>::const_iterator it = keys.begin();
134              it != keys.end(); ++it)
135                 fl_add_browser_line(dialog_->browser_refs, it->c_str());
136
137         if (keys.empty()) {
138                 fl_add_browser_line(dialog_->browser_refs,
139                                     _("*** No labels found in document ***"));
140
141                 setEnabled(dialog_->browser_refs, false);
142                 setEnabled(dialog_->check_sort,   false);
143
144                 fl_set_input(dialog_->input_ref, "");
145         } else {
146                 setEnabled(dialog_->browser_refs, true);
147                 setEnabled(dialog_->check_sort,   true);
148
149                 string ref = fl_get_input(dialog_->input_ref);
150                 vector<string>::const_iterator cit = (ref.empty())
151                         ? keys.begin()
152                         : find(keys.begin(), keys.end(), ref);
153                 if (cit == keys.end()) {
154                         fl_deselect_browser(dialog_->browser_refs);
155                 } else {
156                         if (ref.empty())
157                                 fl_set_input(dialog_->input_ref, cit->c_str());
158
159                         int const i = static_cast<int>(cit - keys.begin());
160                         fl_set_browser_topline(dialog_->browser_refs, max(i-5, 1));
161                         fl_select_browser_line(dialog_->browser_refs, i+1);
162                 }
163         }
164 }
165
166
167 void FormRef::apply()
168 {
169         int const type = fl_get_choice(dialog_->choice_type) - 1;
170         controller().params().setCmdName(InsetRef::getName(type));
171
172         controller().params().setOptions(fl_get_input(dialog_->input_name));
173         controller().params().setContents(fl_get_input(dialog_->input_ref));
174 }
175
176
177 ButtonPolicy::SMInput FormRef::input(FL_OBJECT * ob, long)
178 {
179         ButtonPolicy::SMInput activate(ButtonPolicy::SMI_VALID);
180
181         if (ob == dialog_->button_go) {
182                 // goto reference / go back
183
184                 // No change to data
185                 activate = ButtonPolicy::SMI_NOOP;
186
187                 at_ref_ = !at_ref_;
188                 if (at_ref_) {
189                         controller().gotoRef(fl_get_input(dialog_->input_ref));
190                         fl_set_object_label(dialog_->button_go, _("Go back"));
191                 } else {
192                         controller().gotoBookmark();
193                         fl_set_object_label(dialog_->button_go,
194                                             _("Go to reference"));
195                 }
196
197         } else if (ob == dialog_->browser_refs) {
198
199                 unsigned int sel = fl_get_browser(dialog_->browser_refs);
200                 if (sel < 1 || sel > refs_.size())
201                         return ButtonPolicy::SMI_NOOP;
202
203                 if (!controller().bufferIsReadonly()) {
204                         string s = fl_get_browser_line(dialog_->browser_refs, sel);
205                         fl_set_input(dialog_->input_ref, s.c_str());
206                 }
207
208                 if (at_ref_)
209                         controller().gotoBookmark();
210                 at_ref_ = false;
211                 fl_set_object_label(dialog_->button_go, _("Go to reference"));
212
213                 setEnabled(dialog_->choice_type,      true);
214                 setEnabled(dialog_->button_go, true);
215                 fl_set_object_lcol(dialog_->input_ref, FL_BLACK);
216
217         } else if (ob == dialog_->button_update ||
218                    ob == dialog_->check_sort ||
219                    ob == dialog_->choice_buffer) {
220
221                 if (ob == dialog_->button_update ||
222                     ob == dialog_->choice_buffer) {
223                         string const name =
224                                 controller().getBufferName(fl_get_choice(dialog_->choice_buffer) - 1);
225                         refs_ = controller().getLabelList(name);
226                 }
227
228                 fl_freeze_form(form());
229                 updateBrowser(refs_);
230                 fl_unfreeze_form(form());
231
232         } else if (ob == dialog_->choice_type) {
233
234                 int const type = fl_get_choice(dialog_->choice_type) - 1;
235                 if (controller().params().getCmdName() ==
236                     InsetRef::getName(type)) {
237                         activate = ButtonPolicy::SMI_NOOP;
238                 }
239         }
240
241         return activate;
242 }