]> git.lyx.org Git - lyx.git/blob - src/frontends/LyXView.cpp
make lyx compile
[lyx.git] / src / frontends / LyXView.cpp
1 /**
2  * \file LyXView.cpp
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Lars Gullik Bjønnes
7  * \author John Levon
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #include <config.h>
13
14 #include "LyXView.h"
15
16 #include "Dialogs.h"
17 #include "Toolbars.h"
18 #include "WorkArea.h"
19 #include "Gui.h"
20
21 #include "Buffer.h"
22 #include "buffer_funcs.h"
23 #include "BufferList.h"
24 #include "BufferParams.h"
25 #include "BufferView.h"
26 #include "bufferview_funcs.h"
27 #include "Cursor.h"
28 #include "debug.h"
29 #include "ErrorList.h"
30 #include "FuncRequest.h"
31 #include "gettext.h"
32 #include "Intl.h"
33 #include "callback.h"
34 #include "LyX.h"
35 #include "LyXFunc.h"
36 #include "LyXRC.h"
37 #include "Text.h"
38 #include "MenuBackend.h"
39 #include "Paragraph.h"
40
41 #include "support/lstrings.h"
42 #include "support/filetools.h" // OnlyFilename()
43 #include "support/Timeout.h"
44
45 #include <boost/bind.hpp>
46
47
48 #ifdef HAVE_SYS_TIME_H
49 # include <sys/time.h>
50 #endif
51 #ifdef HAVE_UNISTD_H
52 # include <unistd.h>
53 #endif
54
55 using std::endl;
56 using std::string;
57
58 namespace lyx {
59
60 using support::bformat;
61 using support::FileName;
62 using support::makeDisplayPath;
63 using support::onlyFilename;
64
65 namespace frontend {
66
67 docstring current_layout;
68
69 LyXView::LyXView(int id)
70         : toolbars_(new Toolbars(*this)),
71           autosave_timeout_(new Timeout(5000)),
72           dialogs_(new Dialogs(*this)),
73           id_(id)
74 {
75         // Start autosave timer
76         if (lyxrc.autosave) {
77                 autosave_timeout_->timeout.connect(boost::bind(&LyXView::autoSave, this));
78                 autosave_timeout_->setTimeout(lyxrc.autosave * 1000);
79                 autosave_timeout_->start();
80         }
81 }
82
83
84 LyXView::~LyXView()
85 {
86         disconnectBuffer();
87         disconnectBufferView();
88 }
89
90
91 Buffer * LyXView::buffer()
92 {
93         WorkArea * work_area = currentWorkArea();
94         if (work_area)
95                 return &work_area->bufferView().buffer();
96         return 0;
97 }
98
99
100 Buffer const * LyXView::buffer() const
101 {
102         WorkArea const * work_area = currentWorkArea();
103         if (work_area)
104                 return &work_area->bufferView().buffer();
105         return 0;
106 }
107
108
109 void LyXView::setBuffer(Buffer * newBuffer)
110 {
111         BOOST_ASSERT(newBuffer);
112         busy(true);
113
114         WorkArea * wa = workArea(*newBuffer);
115         if (wa == 0) {
116                 updateLabels(*newBuffer->getMasterBuffer());
117                 wa = addWorkArea(*newBuffer);
118         } else
119                 //Disconnect the old buffer...there's no new one.
120                 disconnectBuffer();
121         connectBuffer(*newBuffer);
122         connectBufferView(wa->bufferView());
123         setCurrentWorkArea(wa);
124
125         busy(false);
126 }
127
128
129 Buffer * LyXView::loadLyXFile(FileName const & filename, bool tolastfiles)
130 {
131         busy(true);
132
133         Buffer * newBuffer = checkAndLoadLyXFile(filename);
134
135         if (!newBuffer) {
136                 message(_("Document not loaded."));
137                 updateStatusBar();
138                 busy(false);
139                 return 0;
140         }
141
142         WorkArea * wa = workArea(*newBuffer);
143         if (wa == 0)
144                 wa = addWorkArea(*newBuffer);
145
146         // scroll to the position when the file was last closed
147         if (lyxrc.use_lastfilepos) {
148                 pit_type pit;
149                 pos_type pos;
150                 boost::tie(pit, pos) = LyX::ref().session().lastFilePos().load(filename);
151                 // if successfully move to pit (returned par_id is not zero),
152                 // update metrics and reset font
153                 wa->bufferView().moveToPosition(pit, pos, 0, 0);
154         }
155
156         if (tolastfiles)
157                 LyX::ref().session().lastFiles().add(filename);
158
159         busy(false);
160         return newBuffer;
161 }
162
163
164 void LyXView::connectBuffer(Buffer & buf)
165 {
166         if (errorsConnection_.connected())
167                 disconnectBuffer();
168
169         bufferStructureChangedConnection_ =
170                 buf.getMasterBuffer()->structureChanged.connect(
171                         boost::bind(&LyXView::updateToc, this));
172
173         errorsConnection_ =
174                 buf.errors.connect(
175                         boost::bind(&LyXView::showErrorList, this, _1));
176
177         messageConnection_ =
178                 buf.message.connect(
179                         boost::bind(&LyXView::message, this, _1));
180
181         busyConnection_ =
182                 buf.busy.connect(
183                         boost::bind(&LyXView::busy, this, _1));
184
185         titleConnection_ =
186                 buf.updateTitles.connect(
187                         boost::bind(&LyXView::updateWindowTitle, this));
188
189         timerConnection_ =
190                 buf.resetAutosaveTimers.connect(
191                         boost::bind(&LyXView::resetAutosaveTimer, this));
192
193         readonlyConnection_ =
194                 buf.readonly.connect(
195                         boost::bind(&LyXView::showReadonly, this, _1));
196 }
197
198
199 void LyXView::disconnectBuffer()
200 {
201         errorsConnection_.disconnect();
202         bufferStructureChangedConnection_.disconnect();
203         messageConnection_.disconnect();
204         busyConnection_.disconnect();
205         titleConnection_.disconnect();
206         timerConnection_.disconnect();
207         readonlyConnection_.disconnect();
208         layout_changed_connection_.disconnect();
209 }
210
211
212 void LyXView::connectBufferView(BufferView & bv)
213 {
214         message_connection_ = bv.message.connect(
215                         boost::bind(&LyXView::message, this, _1));
216         show_dialog_connection_ = bv.showDialog.connect(
217                         boost::bind(&LyXView::showDialog, this, _1));
218         show_dialog_with_data_connection_ = bv.showDialogWithData.connect(
219                         boost::bind(&LyXView::showDialogWithData, this, _1, _2));
220         show_inset_dialog_connection_ = bv.showInsetDialog.connect(
221                         boost::bind(&LyXView::showInsetDialog, this, _1, _2, _3));
222         update_dialog_connection_ = bv.updateDialog.connect(
223                         boost::bind(&LyXView::updateDialog, this, _1, _2));
224         layout_changed_connection_ = bv.layoutChanged.connect(
225                         boost::bind(&Toolbars::setLayout, toolbars_.get(), _1));
226 }
227
228
229 void LyXView::disconnectBufferView()
230 {
231         message_connection_.disconnect();
232         show_dialog_connection_.disconnect();
233         show_dialog_with_data_connection_.disconnect();
234         show_inset_dialog_connection_.disconnect();
235         update_dialog_connection_.disconnect();
236 }
237
238
239 void LyXView::showErrorList(string const & error_type)
240 {
241         ErrorList & el = buffer()->errorList(error_type);
242         if (!el.empty()) {
243                 getDialogs().show("errorlist", error_type);
244         }
245 }
246
247
248 void LyXView::showDialog(string const & name)
249 {
250         getDialogs().show(name);
251 }
252
253
254 void LyXView::showDialogWithData(string const & name, string const & data)
255 {
256         getDialogs().show(name, data);
257 }
258
259
260 void LyXView::showInsetDialog(string const & name, string const & data,
261                 Inset * inset)
262 {
263         getDialogs().show(name, data, inset);
264 }
265
266
267 void LyXView::updateDialog(string const & name, string const & data)
268 {
269         if (getDialogs().visible(name))
270                 getDialogs().update(name, data);
271 }
272
273
274 void LyXView::showReadonly(bool)
275 {
276         updateWindowTitle();
277         getDialogs().updateBufferDependent(false);
278 }
279
280
281 BufferView * LyXView::view()
282 {
283         WorkArea * wa = currentWorkArea();
284         return wa? &wa->bufferView() : 0;
285 }
286
287
288 void LyXView::updateToc()
289 {
290         updateDialog("toc", "");
291 }
292
293
294 void LyXView::updateToolbars()
295 {
296         WorkArea * wa = currentWorkArea();
297         if (wa) {
298                 bool const math =
299                         wa->bufferView().cursor().inMathed();
300                 bool const table =
301                         lyx::getStatus(FuncRequest(LFUN_LAYOUT_TABULAR)).enabled();
302                 bool const review =
303                         lyx::getStatus(FuncRequest(LFUN_CHANGES_TRACK)).enabled() &&
304                         lyx::getStatus(FuncRequest(LFUN_CHANGES_TRACK)).onoff(true);
305
306                 toolbars_->update(math, table, review);
307         } else
308                 toolbars_->update(false, false, false);
309
310         // update redaonly status of open dialogs.
311         getDialogs().checkStatus();
312 }
313
314
315 ToolbarInfo * LyXView::getToolbarInfo(string const & name)
316 {
317         return toolbars_->getToolbarInfo(name);
318 }
319
320
321 void LyXView::toggleToolbarState(string const & name, bool allowauto)
322 {
323         // it is possible to get current toolbar status like this,...
324         // but I decide to obey the order of ToolbarBackend::flags
325         // and disregard real toolbar status.
326         // toolbars_->saveToolbarInfo();
327         //
328         // toggle state on/off/auto
329         toolbars_->toggleToolbarState(name, allowauto);
330         // update toolbar
331         updateToolbars();
332 }
333
334
335 void LyXView::autoSave()
336 {
337         LYXERR(Debug::INFO) << "Running autoSave()" << endl;
338
339         if (buffer())
340                 lyx::autoSave(view());
341 }
342
343
344 void LyXView::resetAutosaveTimer()
345 {
346         if (lyxrc.autosave)
347                 autosave_timeout_->restart();
348 }
349
350
351 void LyXView::updateLayoutChoice()
352 {
353         // Don't show any layouts without a buffer
354         if (!buffer()) {
355                 toolbars_->clearLayoutList();
356                 return;
357         }
358
359         // Update the layout display
360         if (toolbars_->updateLayoutList(buffer()->params().getTextClass_ptr())) {
361                 current_layout = buffer()->params().getTextClass().defaultLayoutName();
362         }
363
364         docstring const & layout = currentWorkArea()->bufferView().cursor().
365                 innerParagraph().layout()->name();
366
367         if (layout != current_layout) {
368                 toolbars_->setLayout(layout);
369                 current_layout = layout;
370         }
371 }
372
373
374 void LyXView::updateWindowTitle()
375 {
376         docstring maximize_title = lyx::from_ascii("LyX");
377         docstring minimize_title = lyx::from_ascii("LyX");
378
379         Buffer * buf = buffer();
380         if (buf) {
381                 string const cur_title = buf->fileName();
382                 if (!cur_title.empty()) {
383                         maximize_title += ": " + makeDisplayPath(cur_title, 30);
384                         minimize_title = lyx::from_utf8(onlyFilename(cur_title));
385                         if (!buf->isClean()) {
386                                 maximize_title += _(" (changed)");
387                                 minimize_title += lyx::char_type('*');
388                         }
389                         if (buf->isReadonly())
390                                 maximize_title += _(" (read only)");
391                 }
392         }
393
394         setWindowTitle(maximize_title, minimize_title);
395 }
396
397
398 void LyXView::dispatch(FuncRequest const & cmd)
399 {
400         string const argument = to_utf8(cmd.argument());
401         switch(cmd.action) {
402                 case LFUN_BUFFER_SWITCH:
403                         setBuffer(theBufferList().getBuffer(to_utf8(cmd.argument())));
404                         break;
405                 default:
406                         theLyXFunc().setLyXView(this);
407                         lyx::dispatch(cmd);
408         }
409 }
410
411
412 Buffer const * const LyXView::updateInset(Inset const * inset)
413 {
414         WorkArea * work_area = currentWorkArea();
415         if (!work_area)
416                 return 0;
417
418         if (inset) {
419                 BOOST_ASSERT(work_area);
420                 work_area->scheduleRedraw();
421         }
422         return &work_area->bufferView().buffer();
423 }
424
425
426 void LyXView::openLayoutList()
427 {
428         toolbars_->openLayoutList();
429 }
430
431
432 bool LyXView::isToolbarVisible(std::string const & id)
433 {
434         return toolbars_->visible(id);
435 }
436
437 } // namespace frontend
438 } // namespace lyx