]> git.lyx.org Git - lyx.git/blob - src/frontends/qt4/GuiCompare.cpp
Compare: Add a statusbar to the dialog and show a message every second. The message...
[lyx.git] / src / frontends / qt4 / GuiCompare.cpp
1 /**
2  * \file GuiCompare.cpp
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Vincent van Ravesteijn
7  *
8  * Full author contact details are available in file CREDITS.
9  */
10
11 #include <config.h>
12
13 #include "GuiCompare.h"
14
15 #include "Buffer.h"
16 #include "BufferView.h"
17 #include "BufferList.h"
18 #include "buffer_funcs.h"
19 #include "Compare.h"
20 #include "FuncRequest.h"
21 #include "GuiView.h"
22 #include "LyXRC.h"
23 #include "qt_helpers.h"
24
25 #include "frontends/alert.h"
26
27 #include "support/debug.h"
28 #include "support/filetools.h"
29 #include "support/FileName.h"
30 #include "support/gettext.h"
31
32 #include <QThread>
33
34
35 using namespace std;
36 using namespace lyx::support;
37
38 namespace lyx {
39 namespace frontend {
40
41
42 GuiCompare::GuiCompare(GuiView & lv)
43         : GuiDialog(lv, "compare", qt_("Compare LyX files")),
44         compare_(0), dest_buffer_(0), old_buffer_(0), new_buffer_(0)
45 {
46         setupUi(this);
47         setModal(Qt::WindowModal);
48
49         connect(okPB, SIGNAL(clicked()), this, SLOT(slotOK()));
50         connect(closePB, SIGNAL(clicked()), this, SLOT(slotCancel()));
51
52         connect(newFilePB, SIGNAL(clicked()), this, SLOT(selectNewFile()));
53         connect(oldFilePB, SIGNAL(clicked()), this, SLOT(selectOldFile()));
54
55         connect(newFileCB, SIGNAL(currentIndexChanged(int)),
56                 this, SLOT(changeAdaptor()));
57         connect(newFileCB, SIGNAL(editTextChanged(const QString &)),
58                 this, SLOT(changeAdaptor()));
59         connect(oldFileCB, SIGNAL(currentIndexChanged(int)),
60                 this, SLOT(changeAdaptor()));
61         connect(oldFileCB, SIGNAL(editTextChanged(const QString &)),
62                 this, SLOT(changeAdaptor()));
63
64         newSettingsRB->setChecked(true);
65
66         progressBar->setValue(0);
67         progressBar->setEnabled(false);
68
69         bc().setPolicy(ButtonPolicy::OkApplyCancelPolicy);
70         bc().setOK(okPB);
71 }
72
73 GuiCompare::~GuiCompare()
74 {
75         if (compare_)
76                 delete compare_;
77 }
78
79 void GuiCompare::closeEvent(QCloseEvent *)
80 {
81         slotCancel();   
82 }
83
84
85 void GuiCompare::changeAdaptor()
86 {
87         changed();
88 }
89
90
91 bool GuiCompare::isValid()
92 {
93         bool const valid = !newFileCB->currentText().isEmpty()
94                 && !oldFileCB->currentText().isEmpty();
95         return valid;
96 }
97
98
99 void GuiCompare::updateContents()
100 {
101         if (compare_ && compare_->isRunning())
102                 return;
103
104         QString restore_filename1 = newFileCB->currentText();
105         QString restore_filename2 = oldFileCB->currentText();
106         newFileCB->clear();
107         oldFileCB->clear();
108         progressBar->setValue(0);
109         statusBar->clearMessage();
110         BufferList::iterator it = theBufferList().begin();
111         BufferList::iterator const end = theBufferList().end();
112         for (; it != end; ++it) {
113                 QString filename = toqstr((*it)->absFileName());
114                 newFileCB->addItem(filename);
115                 oldFileCB->addItem(filename);
116         }
117         if (lyxview().documentBufferView())
118                 newFileCB->setEditText(toqstr(buffer().absFileName()));
119         else
120                 newFileCB->setEditText(restore_filename1);
121
122         if (!restore_filename2.isEmpty())
123                 oldFileCB->setEditText(restore_filename2);
124         else
125                 oldFileCB->clearEditText();
126
127         if (isValid()) {
128                 bc().setValid(isValid());
129                 bc().apply();
130         }
131 }
132
133
134 void GuiCompare::selectNewFile()
135 {
136         QString name = browse(newFileCB->currentText());
137         if (!name.isEmpty())
138                 newFileCB->setEditText(name);
139         changed();
140 }
141
142
143 void GuiCompare::selectOldFile()
144 {
145         QString name = browse(oldFileCB->currentText());
146         if (!name.isEmpty())
147                 oldFileCB->setEditText(name);
148         changed();
149 }
150
151
152 QString GuiCompare::browse(QString const & in_name) const
153 {
154         QString const title = qt_("Select document");
155
156         QStringList const & filters = fileFilters(qt_("LyX Documents (*.lyx)"));
157         
158         QString filename;
159         if (lyxview().documentBufferView()) {
160                 QString path = bufferFilepath();
161                 filename = browseRelFile(in_name, path, title, filters, false, 
162                         qt_("Documents|#o#O"), toqstr(lyxrc.document_path));
163         } else {
164                 QString path = toqstr(lyxrc.document_path);
165                 QString rel_filename = browseRelFile(in_name, path, title, filters, false, 
166                         qt_("Documents|#o#O"), toqstr(lyxrc.document_path));
167                 filename = makeAbsPath(rel_filename, path);
168         }
169         return filename;        
170 }
171
172
173 void GuiCompare::enableControls(bool enable) const
174 {
175         newFileLA->setEnabled(enable);
176         newFilePB->setEnabled(enable);
177         newFileCB->setEnabled(enable);
178         oldFileLA->setEnabled(enable);
179         oldFilePB->setEnabled(enable);
180         oldFileCB->setEnabled(enable);
181         okPB->setEnabled(enable);
182         groupBox->setEnabled(enable);
183         progressBar->setEnabled(!enable);
184
185         if (enable)
186                 closePB->setText(qt_("Close"));
187         else
188                 closePB->setText(qt_("Cancel"));
189 }
190
191
192 void GuiCompare::error()
193 {
194         Alert::error(_("Error"), _("Error while comparing documents."));
195         window_title_ = windowTitle();
196         finished(true);
197 }
198
199 void GuiCompare::finished(bool aborted)
200 {
201         enableControls(true);
202
203         if (compare_) {
204                 delete compare_;
205                 compare_ = 0;
206         }
207         
208         if (aborted) {
209                 if (dest_buffer_) {
210                         dest_buffer_->markClean();
211                         theBufferList().release(dest_buffer_);
212                 }
213                 setWindowTitle(window_title_);
214                 progressBar->setValue(0);
215                 statusBar->showMessage(qt_("Aborted"));
216         } else {
217                 hideView();
218                 bc().ok();
219                 if (dest_buffer_) {
220                         dispatch(FuncRequest(LFUN_BUFFER_SWITCH,
221                                 dest_buffer_->absFileName()));
222                 }
223                 statusBar->showMessage(qt_("Finished"));
224         }
225 }
226
227
228 void GuiCompare::progress(int val)
229 {
230         progressBar->setValue(progressBar->value() + val);
231 }
232
233
234 void GuiCompare::progressMax(int max) const
235 {
236         progressBar->setMaximum(max);
237 }
238         
239
240
241 void GuiCompare::setStatusMessage(QString msg)
242 {
243         statusBar->showMessage(msg);
244 }
245
246
247 void GuiCompare::slotOK()
248 {
249         enableControls(false);
250         if (!run())
251                 error();
252 }
253
254
255 void GuiCompare::slotCancel()
256 {
257         if (compare_ && compare_->isRunning()) {
258                 window_title_ = windowTitle();
259                 setWindowTitle(window_title_ + " " + qt_("(cancelling)"));
260                 statusBar->showMessage(qt_("Aborting process..."));
261                 compare_->abort();
262         } else {
263                 GuiDialog::slotClose();
264                 progressBar->setValue(0);
265                 statusBar->clearMessage();
266         }
267 }
268
269
270 Buffer const * GuiCompare::bufferFromFileName(string const & file) const
271 {
272         FileName fname;
273         if (FileName::isAbsolute(file))
274                 fname.set(file);
275         else if (lyxview().documentBufferView())
276                 fname = support::makeAbsPath(file, fromqstr(bufferFilepath()));
277
278         if (fname.empty()
279                         || (!fname.exists() && !theBufferList().getBuffer(fname))) {
280                 LYXERR0( "Unable to read: " << file);
281                 return 0;
282         }
283         return loadIfNeeded(fname);
284 }
285
286
287 int GuiCompare::run()
288 {
289         progressBar->setValue(0);
290
291         new_buffer_ = bufferFromFileName(fromqstr(newFileCB->currentText()));
292         old_buffer_ = bufferFromFileName(fromqstr(oldFileCB->currentText()));
293
294         // new buffer that will carry the output
295         FileName initpath(lyxrc.document_path);
296         dest_buffer_ = newUnnamedFile(initpath, to_utf8(_("differences")));
297
298         if (!new_buffer_ || !old_buffer_ || !dest_buffer_)
299                 return 0;
300
301         dest_buffer_->changed(true);
302         dest_buffer_->markDirty();
303
304         // get the options from the dialog
305         CompareOptions options;
306         options.settings_from_new = newSettingsRB->isChecked();
307
308         // init the compare object and start it
309         compare_ = new Compare(new_buffer_, old_buffer_, dest_buffer_, options);
310         connect(compare_, SIGNAL(error()), this, SLOT(error()));
311         connect(compare_, SIGNAL(finished(bool)), this, SLOT(finished(bool)));
312         connect(compare_, SIGNAL(progress(int)), this, SLOT(progress(int)));
313         connect(compare_, SIGNAL(progressMax(int)), this, SLOT(progressMax(int)));
314         connect(compare_, SIGNAL(statusMessage(QString)),
315                 this, SLOT(setStatusMessage(QString)));
316         compare_->start(QThread::LowPriority);
317         return 1;
318 }
319
320
321 Dialog * createGuiCompare(GuiView & lv) { return new GuiCompare(lv); }
322
323
324 } // namespace frontend
325 } // namespace lyx
326
327
328 #include "moc_GuiCompare.cpp"