]> git.lyx.org Git - lyx.git/blob - src/frontends/qt4/GuiRef.cpp
more latin1..utf8 schanges. all of src/* should be utf8 now
[lyx.git] / src / frontends / qt4 / GuiRef.cpp
1 /**
2  * \file GuiRef.cpp
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author John Levon
7  * \author Jürgen Spitzmüller
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #include <config.h>
13
14 #include "GuiRef.h"
15
16 #include "Buffer.h"
17 #include "BufferList.h"
18 #include "FuncRequest.h"
19
20 #include "qt_helpers.h"
21
22 #include "insets/InsetRef.h"
23
24 #include "support/FileName.h"
25 #include "support/FileNameList.h"
26 #include "support/filetools.h" // makeAbsPath, makeDisplayPath
27
28 #include <QLineEdit>
29 #include <QCheckBox>
30 #include <QListWidget>
31 #include <QListWidgetItem>
32 #include <QPushButton>
33 #include <QToolTip>
34 #include <QCloseEvent>
35
36 using namespace std;
37 using namespace lyx::support;
38
39 namespace lyx {
40 namespace frontend {
41
42 GuiRef::GuiRef(GuiView & lv)
43         : GuiDialog(lv, "ref", qt_("Cross-reference")),
44           params_(insetCode("ref"))
45 {
46         setupUi(this);
47
48         sort_ = false;
49         at_ref_ = false;
50
51         //FIXME: when/if we support the xr package for cross-reference
52         //between independant files. Those can be re-enabled.
53         refsL->setEnabled(false);
54         refsL->hide();
55         bufferCO->setEnabled(false);
56         bufferCO->hide();
57
58         connect(okPB, SIGNAL(clicked()), this, SLOT(slotOK()));
59         connect(applyPB, SIGNAL(clicked()), this, SLOT(slotApply()));
60         connect(closePB, SIGNAL(clicked()), this, SLOT(slotClose()));
61         connect(closePB, SIGNAL(clicked()), this, SLOT(reset_dialog()));
62         connect(this, SIGNAL(rejected()), this, SLOT(dialog_rejected()));
63
64         connect(typeCO, SIGNAL(activated(int)),
65                 this, SLOT(changed_adaptor()));
66         connect(referenceED, SIGNAL(textChanged(QString)),
67                 this, SLOT(changed_adaptor()));
68         connect(nameED, SIGNAL(textChanged(QString)),
69                 this, SLOT(changed_adaptor()));
70         connect(refsLW, SIGNAL(itemClicked(QListWidgetItem *)),
71                 this, SLOT(refHighlighted(QListWidgetItem *)));
72         connect(refsLW, SIGNAL(itemSelectionChanged()),
73                 this, SLOT(selectionChanged()));
74         connect(refsLW, SIGNAL(itemActivated(QListWidgetItem *)),
75                 this, SLOT(refSelected(QListWidgetItem *)));
76         connect(sortCB, SIGNAL(clicked(bool)),
77                 this, SLOT(sortToggled(bool)));
78         connect(gotoPB, SIGNAL(clicked()),
79                 this, SLOT(gotoClicked()));
80         connect(updatePB, SIGNAL(clicked()),
81                 this, SLOT(updateClicked()));
82         connect(bufferCO, SIGNAL(activated(int)),
83                 this, SLOT(updateClicked()));
84
85         setFocusProxy(refsLW);
86
87         bc().setPolicy(ButtonPolicy::NoRepeatedApplyReadOnlyPolicy);
88         bc().setOK(okPB);
89         bc().setApply(applyPB);
90         bc().setCancel(closePB);
91         bc().addReadOnly(refsLW);
92         bc().addReadOnly(sortCB);
93         bc().addReadOnly(nameED);
94         bc().addReadOnly(referenceED);
95         bc().addReadOnly(typeCO);
96         bc().addReadOnly(bufferCO);
97
98         restored_buffer_ = -1;
99         active_buffer_ = -1;
100 }
101
102
103 void GuiRef::changed_adaptor()
104 {
105         changed();
106 }
107
108
109 void GuiRef::gotoClicked()
110 {
111         gotoRef();
112 }
113
114
115 void GuiRef::selectionChanged()
116 {
117         if (isBufferReadonly())
118                 return;
119
120         QList<QListWidgetItem *> selections = refsLW->selectedItems();
121         if (selections.isEmpty())
122                 return;
123         QListWidgetItem * sel = selections.first();
124         refHighlighted(sel);
125         return;
126 }
127
128
129 void GuiRef::refHighlighted(QListWidgetItem * sel)
130 {
131         if (isBufferReadonly())
132                 return;
133
134 /*      int const cur_item = refsLW->currentRow();
135         bool const cur_item_selected = cur_item >= 0 ?
136                 refsLB->isSelected(cur_item) : false;*/
137         bool const cur_item_selected = refsLW->isItemSelected(sel);
138
139         if (cur_item_selected)
140                 referenceED->setText(sel->text());
141
142         if (at_ref_)
143                 gotoRef();
144         gotoPB->setEnabled(true);
145         if (typeAllowed())
146                 typeCO->setEnabled(true);
147         if (nameAllowed())
148                 nameED->setEnabled(true);
149 }
150
151
152 void GuiRef::refSelected(QListWidgetItem * sel)
153 {
154         if (isBufferReadonly())
155                 return;
156
157 /*      int const cur_item = refsLW->currentRow();
158         bool const cur_item_selected = cur_item >= 0 ?
159                 refsLB->isSelected(cur_item) : false;*/
160         bool const cur_item_selected = refsLW->isItemSelected(sel);
161
162         if (cur_item_selected)
163                 referenceED->setText(sel->text());
164         // <enter> or double click, inserts ref and closes dialog
165         slotOK();
166 }
167
168
169 void GuiRef::sortToggled(bool on)
170 {
171         sort_ = on;
172         redoRefs();
173 }
174
175
176 void GuiRef::updateClicked()
177 {
178         updateRefs();
179 }
180
181
182 void GuiRef::dialog_rejected()
183 {
184         reset_dialog();
185         // We have to do this manually, instead of calling slotClose(), because
186         // the dialog has already been made invisible before rejected() triggers.
187         Dialog::disconnect();
188 }
189
190
191 void GuiRef::reset_dialog()
192 {
193         at_ref_ = false;
194         setGotoRef();
195 }
196
197
198 void GuiRef::closeEvent(QCloseEvent * e)
199 {
200         slotClose();
201         reset_dialog();
202         e->accept();
203 }
204
205
206 void GuiRef::updateContents()
207 {
208         int orig_type = typeCO->currentIndex();
209
210         referenceED->setText(toqstr(params_["reference"]));
211
212         nameED->setText(toqstr(params_["name"]));
213         nameED->setReadOnly(!nameAllowed() && !isBufferReadonly());
214
215         // restore type settings for new insets
216         if (params_["reference"].empty())
217                 typeCO->setCurrentIndex(orig_type);
218         else
219                 typeCO->setCurrentIndex(InsetRef::getType(params_.getCmdName()));
220         typeCO->setEnabled(typeAllowed() && !isBufferReadonly());
221         if (!typeAllowed())
222                 typeCO->setCurrentIndex(0);
223
224         sortCB->setChecked(sort_);
225
226         // insert buffer list
227         bufferCO->clear();
228         FileNameList const & buffers = theBufferList().fileNames();
229         for (FileNameList::const_iterator it = buffers.begin();
230              it != buffers.end(); ++it) {
231                 bufferCO->addItem(toqstr(makeDisplayPath(it->absFilename())));
232         }
233
234         int const thebuffer = theBufferList().bufferNum(buffer().fileName());
235         // restore the buffer combo setting for new insets
236         if (params_["reference"].empty() && restored_buffer_ != -1
237             && restored_buffer_ < bufferCO->count() && thebuffer == active_buffer_)
238                 bufferCO->setCurrentIndex(restored_buffer_);
239         else {
240                 int const num = theBufferList().bufferNum(buffer().fileName());
241                 bufferCO->setCurrentIndex(num);
242                 if (thebuffer != active_buffer_)
243                         restored_buffer_ = num;
244         }
245         active_buffer_ = thebuffer;
246
247         updateRefs();
248         bc().setValid(false);
249 }
250
251
252 void GuiRef::applyView()
253 {
254         last_reference_ = referenceED->text();
255
256         params_.setCmdName(InsetRef::getName(typeCO->currentIndex()));
257         params_["reference"] = qstring_to_ucs4(last_reference_);
258         params_["name"] = qstring_to_ucs4(nameED->text());
259
260         restored_buffer_ = bufferCO->currentIndex();
261 }
262
263
264 bool GuiRef::nameAllowed()
265 {
266         KernelDocType const doc_type = docType();
267         return doc_type != LATEX && doc_type != LITERATE;
268 }
269
270
271 bool GuiRef::typeAllowed()
272 {
273         return docType() != DOCBOOK;
274 }
275
276
277 void GuiRef::setGoBack()
278 {
279         gotoPB->setText(qt_("&Go Back"));
280         gotoPB->setToolTip("");
281         gotoPB->setToolTip(qt_("Jump back"));
282 }
283
284
285 void GuiRef::setGotoRef()
286 {
287         gotoPB->setText(qt_("&Go to Label"));
288         gotoPB->setToolTip("");
289         gotoPB->setToolTip(qt_("Jump to label"));
290 }
291
292
293 void GuiRef::gotoRef()
294 {
295         string ref = fromqstr(referenceED->text());
296
297         if (at_ref_) {
298                 // go back
299                 setGotoRef();
300                 gotoBookmark();
301         } else {
302                 // go to the ref
303                 setGoBack();
304                 gotoRef(ref);
305         }
306         at_ref_ = !at_ref_;
307 }
308
309
310 void GuiRef::redoRefs()
311 {
312         // Prevent these widgets from emitting any signals whilst
313         // we modify their state.
314         refsLW->blockSignals(true);
315         referenceED->blockSignals(true);
316         refsLW->setUpdatesEnabled(false);
317
318         refsLW->clear();
319
320         // need this because Qt will send a highlight() here for
321         // the first item inserted
322         QString const oldSelection(referenceED->text());
323
324         for (vector<docstring>::const_iterator iter = refs_.begin();
325                 iter != refs_.end(); ++iter) {
326                 refsLW->addItem(toqstr(*iter));
327         }
328
329         if (sort_)
330                 refsLW->sortItems();
331
332         referenceED->setText(oldSelection);
333
334         // restore the last selection or, for new insets, highlight
335         // the previous selection
336         if (!oldSelection.isEmpty() || !last_reference_.isEmpty()) {
337                 bool const newInset = oldSelection.isEmpty();
338                 QString textToFind = newInset ? last_reference_ : oldSelection;
339                 last_reference_.clear();
340                 for (int i = 0; i != refsLW->count(); ++i) {
341                         QListWidgetItem * item = refsLW->item(i);
342                         if (textToFind == item->text()) {
343                                 refsLW->setCurrentItem(item);
344                                 refsLW->setItemSelected(item, !newInset);
345                                 //Make sure selected item is visible
346                                 refsLW->scrollToItem(item);
347                                 last_reference_ = textToFind;
348                                 break;
349                         }
350                 }
351         }
352         refsLW->setUpdatesEnabled(true);
353         refsLW->update();
354
355         // Re-activate the emission of signals by these widgets.
356         refsLW->blockSignals(false);
357         referenceED->blockSignals(false);
358 }
359
360
361 void GuiRef::updateRefs()
362 {
363         refs_.clear();
364         FileName const & name = theBufferList().fileNames()[bufferCO->currentIndex()];
365         Buffer const * buf = theBufferList().getBuffer(name);
366         buf->getLabelList(refs_);
367         sortCB->setEnabled(!refs_.empty());
368         refsLW->setEnabled(!refs_.empty());
369         // refsLW should only be the focus proxy when it is enabled
370         setFocusProxy(refs_.empty() ? 0 : refsLW);
371         gotoPB->setEnabled(!refs_.empty());
372         redoRefs();
373 }
374
375
376 bool GuiRef::isValid()
377 {
378         return !referenceED->text().isEmpty();
379 }
380
381
382 void GuiRef::gotoRef(string const & ref)
383 {
384         dispatch(FuncRequest(LFUN_BOOKMARK_SAVE, "0"));
385         dispatch(FuncRequest(LFUN_LABEL_GOTO, ref));
386 }
387
388
389 void GuiRef::gotoBookmark()
390 {
391         dispatch(FuncRequest(LFUN_BOOKMARK_GOTO, "0"));
392 }
393
394
395 bool GuiRef::initialiseParams(std::string const & data)
396 {
397         InsetCommand::string2params("ref", data, params_);
398         return true;
399 }
400
401
402 void GuiRef::dispatchParams()
403 {
404         std::string const lfun = InsetCommand::params2string("ref", params_);
405         dispatch(FuncRequest(getLfun(), lfun));
406 }
407
408
409
410 Dialog * createGuiRef(GuiView & lv) { return new GuiRef(lv); }
411
412
413 } // namespace frontend
414 } // namespace lyx
415
416 #include "moc_GuiRef.cpp"