]> git.lyx.org Git - lyx.git/blob - src/frontends/qt4/GuiView.cpp
Autosaving is now always threaded.
[lyx.git] / src / frontends / qt4 / GuiView.cpp
1 /**
2  * \file GuiView.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  * \author Abdelrazak Younes
9  * \author Peter Kümmel
10  *
11  * Full author contact details are available in file CREDITS.
12  */
13
14 #include <config.h>
15
16 #include "GuiView.h"
17
18 #include "Dialog.h"
19 #include "DispatchResult.h"
20 #include "FileDialog.h"
21 #include "FontLoader.h"
22 #include "GuiApplication.h"
23 #include "GuiCommandBuffer.h"
24 #include "GuiCompleter.h"
25 #include "GuiKeySymbol.h"
26 #include "GuiToc.h"
27 #include "GuiToolbar.h"
28 #include "GuiWorkArea.h"
29 #include "GuiProgress.h"
30 #include "LayoutBox.h"
31 #include "Menus.h"
32 #include "TocModel.h"
33
34 #include "qt_helpers.h"
35
36 #include "frontends/alert.h"
37
38 #include "buffer_funcs.h"
39 #include "Buffer.h"
40 #include "BufferList.h"
41 #include "BufferParams.h"
42 #include "BufferView.h"
43 #include "Compare.h"
44 #include "Converter.h"
45 #include "Cursor.h"
46 #include "CutAndPaste.h"
47 #include "Encoding.h"
48 #include "ErrorList.h"
49 #include "Format.h"
50 #include "FuncStatus.h"
51 #include "FuncRequest.h"
52 #include "Intl.h"
53 #include "Layout.h"
54 #include "Lexer.h"
55 #include "LyXAction.h"
56 #include "LyX.h"
57 #include "LyXRC.h"
58 #include "LyXVC.h"
59 #include "Paragraph.h"
60 #include "SpellChecker.h"
61 #include "TexRow.h"
62 #include "TextClass.h"
63 #include "Text.h"
64 #include "Toolbars.h"
65 #include "version.h"
66
67 #include "support/convert.h"
68 #include "support/debug.h"
69 #include "support/ExceptionMessage.h"
70 #include "support/FileName.h"
71 #include "support/filetools.h"
72 #include "support/gettext.h"
73 #include "support/filetools.h"
74 #include "support/ForkedCalls.h"
75 #include "support/lassert.h"
76 #include "support/lstrings.h"
77 #include "support/os.h"
78 #include "support/Package.h"
79 #include "support/Path.h"
80 #include "support/Systemcall.h"
81 #include "support/Timeout.h"
82 #include "support/ProgressInterface.h"
83
84 #include <QAction>
85 #include <QApplication>
86 #include <QCloseEvent>
87 #include <QDebug>
88 #include <QDesktopWidget>
89 #include <QDragEnterEvent>
90 #include <QDropEvent>
91 #include <QFuture>
92 #include <QFutureWatcher>
93 #include <QLabel>
94 #include <QList>
95 #include <QMenu>
96 #include <QMenuBar>
97 #include <QMovie>
98 #include <QPainter>
99 #include <QPixmap>
100 #include <QPixmapCache>
101 #include <QPoint>
102 #include <QPushButton>
103 #include <QScrollBar>
104 #include <QSettings>
105 #include <QShowEvent>
106 #include <QSplitter>
107 #include <QStackedWidget>
108 #include <QStatusBar>
109 #include <QtConcurrentRun>
110 #include <QTime>
111 #include <QTimer>
112 #include <QToolBar>
113 #include <QUrl>
114
115
116
117 #define EXPORT_in_THREAD 1
118
119
120 #include "support/bind.h"
121
122 #include <sstream>
123
124 #ifdef HAVE_SYS_TIME_H
125 # include <sys/time.h>
126 #endif
127 #ifdef HAVE_UNISTD_H
128 # include <unistd.h>
129 #endif
130
131
132 using namespace std;
133 using namespace lyx::support;
134
135 namespace lyx {
136
137 using support::addExtension;
138 using support::changeExtension;
139 using support::removeExtension;
140
141 namespace frontend {
142
143 namespace {
144
145 class BackgroundWidget : public QWidget
146 {
147 public:
148         BackgroundWidget()
149         {
150                 LYXERR(Debug::GUI, "show banner: " << lyxrc.show_banner);
151                 if (!lyxrc.show_banner)
152                         return;
153                 /// The text to be written on top of the pixmap
154                 QString const text = lyx_version ?
155                         qt_("version ") + lyx_version : qt_("unknown version");
156                 splash_ = getPixmap("images/", "banner", "png");
157
158                 QPainter pain(&splash_);
159                 pain.setPen(QColor(0, 0, 0));
160                 QFont font;
161                 // The font used to display the version info
162                 font.setStyleHint(QFont::SansSerif);
163                 font.setWeight(QFont::Bold);
164                 font.setPointSize(int(toqstr(lyxrc.font_sizes[FONT_SIZE_LARGE]).toDouble()));
165                 pain.setFont(font);
166                 pain.drawText(190, 225, text);
167                 setFocusPolicy(Qt::StrongFocus);
168         }
169
170         void paintEvent(QPaintEvent *)
171         {
172                 int x = (width() - splash_.width()) / 2;
173                 int y = (height() - splash_.height()) / 2;
174                 QPainter pain(this);
175                 pain.drawPixmap(x, y, splash_);
176         }
177
178         void keyPressEvent(QKeyEvent * ev)
179         {
180                 KeySymbol sym;
181                 setKeySymbol(&sym, ev);
182                 if (sym.isOK()) {
183                         guiApp->processKeySym(sym, q_key_state(ev->modifiers()));
184                         ev->accept();
185                 } else {
186                         ev->ignore();
187                 }
188         }
189
190 private:
191         QPixmap splash_;
192 };
193
194
195 /// Toolbar store providing access to individual toolbars by name.
196 typedef map<string, GuiToolbar *> ToolbarMap;
197
198 typedef shared_ptr<Dialog> DialogPtr;
199
200 } // namespace anon
201
202
203 struct GuiView::GuiViewPrivate
204 {
205         GuiViewPrivate(GuiView * gv)
206                 : gv_(gv), current_work_area_(0), current_main_work_area_(0),
207                 layout_(0), autosave_timeout_(5000),
208                 in_show_(false)
209         {
210                 // hardcode here the platform specific icon size
211                 smallIconSize = 16;  // scaling problems
212                 normalIconSize = 20; // ok, default if iconsize.png is missing
213                 bigIconSize = 26;       // better for some math icons
214
215                 // if it exists, use width of iconsize.png as normal size
216                 QString const dir = toqstr(addPath("images", lyxrc.icon_set));
217                 FileName const fn = lyx::libFileSearch(dir, "iconsize.png");
218                 if (!fn.empty()) {
219                         QImage image(toqstr(fn.absFileName()));
220                         if (image.width() < int(smallIconSize))
221                                 normalIconSize = smallIconSize;
222                         else if (image.width() > int(bigIconSize))
223                                 normalIconSize = bigIconSize;
224                         else
225                                 normalIconSize = image.width();
226                 }
227
228                 splitter_ = new QSplitter;
229                 bg_widget_ = new BackgroundWidget;
230                 stack_widget_ = new QStackedWidget;
231                 stack_widget_->addWidget(bg_widget_);
232                 stack_widget_->addWidget(splitter_);
233                 setBackground();
234
235                 // TODO cleanup, remove the singleton, handle multiple Windows?
236                 progress_ = ProgressInterface::instance();
237                 if (!dynamic_cast<GuiProgress*>(progress_)) {
238                         progress_ = new GuiProgress;  // TODO who deletes it
239                         ProgressInterface::setInstance(progress_);
240                 }
241                 QObject::connect(
242                                 dynamic_cast<GuiProgress*>(progress_),
243                                 SIGNAL(updateStatusBarMessage(QString const&)),
244                                 gv, SLOT(updateStatusBarMessage(QString const&)));
245                 QObject::connect(
246                                 dynamic_cast<GuiProgress*>(progress_),
247                                 SIGNAL(clearMessageText()),
248                                 gv, SLOT(clearMessageText()));
249         }
250
251         ~GuiViewPrivate()
252         {
253                 delete splitter_;
254                 delete bg_widget_;
255                 delete stack_widget_;
256         }
257
258         QMenu * toolBarPopup(GuiView * parent)
259         {
260                 // FIXME: translation
261                 QMenu * menu = new QMenu(parent);
262                 QActionGroup * iconSizeGroup = new QActionGroup(parent);
263
264                 QAction * smallIcons = new QAction(iconSizeGroup);
265                 smallIcons->setText(qt_("Small-sized icons"));
266                 smallIcons->setCheckable(true);
267                 QObject::connect(smallIcons, SIGNAL(triggered()),
268                         parent, SLOT(smallSizedIcons()));
269                 menu->addAction(smallIcons);
270
271                 QAction * normalIcons = new QAction(iconSizeGroup);
272                 normalIcons->setText(qt_("Normal-sized icons"));
273                 normalIcons->setCheckable(true);
274                 QObject::connect(normalIcons, SIGNAL(triggered()),
275                         parent, SLOT(normalSizedIcons()));
276                 menu->addAction(normalIcons);
277
278                 QAction * bigIcons = new QAction(iconSizeGroup);
279                 bigIcons->setText(qt_("Big-sized icons"));
280                 bigIcons->setCheckable(true);
281                 QObject::connect(bigIcons, SIGNAL(triggered()),
282                         parent, SLOT(bigSizedIcons()));
283                 menu->addAction(bigIcons);
284
285                 unsigned int cur = parent->iconSize().width();
286                 if ( cur == parent->d.smallIconSize)
287                         smallIcons->setChecked(true);
288                 else if (cur == parent->d.normalIconSize)
289                         normalIcons->setChecked(true);
290                 else if (cur == parent->d.bigIconSize)
291                         bigIcons->setChecked(true);
292
293                 return menu;
294         }
295
296         void setBackground()
297         {
298                 stack_widget_->setCurrentWidget(bg_widget_);
299                 bg_widget_->setUpdatesEnabled(true);
300                 bg_widget_->setFocus();
301         }
302
303         int tabWorkAreaCount()
304         {
305                 return splitter_->count();
306         }
307
308         TabWorkArea * tabWorkArea(int i)
309         {
310                 return dynamic_cast<TabWorkArea *>(splitter_->widget(i));
311         }
312
313         TabWorkArea * currentTabWorkArea()
314         {
315                 int areas = tabWorkAreaCount();
316                 if (areas == 1)
317                         // The first TabWorkArea is always the first one, if any.
318                         return tabWorkArea(0);
319
320                 for (int i = 0; i != areas;  ++i) {
321                         TabWorkArea * twa = tabWorkArea(i);
322                         if (current_main_work_area_ == twa->currentWorkArea())
323                                 return twa;
324                 }
325
326                 // None has the focus so we just take the first one.
327                 return tabWorkArea(0);
328         }
329
330         int countWorkAreasOf(Buffer & buf)
331         {
332                 int areas = tabWorkAreaCount();
333                 int count = 0;
334                 for (int i = 0; i != areas;  ++i) {
335                         TabWorkArea * twa = tabWorkArea(i);
336                         if (twa->workArea(buf))
337                                 ++count;
338                 }
339                 return count;
340         }
341
342         void setPreviewFuture(QFuture<Buffer::ExportStatus> const & f)
343         {
344                 if (processing_thread_watcher_.isRunning()) {
345                         // we prefer to cancel this preview in order to keep a snappy
346                         // interface.
347                         return;
348                 }
349                 processing_thread_watcher_.setFuture(f);
350         }
351
352 public:
353         GuiView * gv_;
354         GuiWorkArea * current_work_area_;
355         GuiWorkArea * current_main_work_area_;
356         QSplitter * splitter_;
357         QStackedWidget * stack_widget_;
358         BackgroundWidget * bg_widget_;
359         /// view's toolbars
360         ToolbarMap toolbars_;
361         ProgressInterface* progress_;
362         /// The main layout box.
363         /**
364          * \warning Don't Delete! The layout box is actually owned by
365          * whichever toolbar contains it. All the GuiView class needs is a
366          * means of accessing it.
367          *
368          * FIXME: replace that with a proper model so that we are not limited
369          * to only one dialog.
370          */
371         LayoutBox * layout_;
372
373         ///
374         map<string, DialogPtr> dialogs_;
375
376         unsigned int smallIconSize;
377         unsigned int normalIconSize;
378         unsigned int bigIconSize;
379         ///
380         QTimer statusbar_timer_;
381         /// auto-saving of buffers
382         Timeout autosave_timeout_;
383         /// flag against a race condition due to multiclicks, see bug #1119
384         bool in_show_;
385
386         ///
387         TocModels toc_models_;
388
389         ///
390         QFutureWatcher<docstring> autosave_watcher_;
391         QFutureWatcher<Buffer::ExportStatus> processing_thread_watcher_;
392         ///
393         string last_export_format;
394         string processing_format;
395
396         static QSet<Buffer const *> busyBuffers;
397         static Buffer::ExportStatus previewAndDestroy(Buffer const * orig, Buffer * buffer, string const & format);
398         static Buffer::ExportStatus exportAndDestroy(Buffer const * orig, Buffer * buffer, string const & format);
399         static Buffer::ExportStatus compileAndDestroy(Buffer const * orig, Buffer * buffer, string const & format);
400         static docstring autosaveAndDestroy(Buffer const * orig, Buffer * buffer);
401
402         template<class T>
403         static Buffer::ExportStatus runAndDestroy(const T& func, Buffer const * orig, Buffer * buffer, string const & format);
404
405         // TODO syncFunc/previewFunc: use bind
406         bool asyncBufferProcessing(string const & argument,
407                                    Buffer const * used_buffer,
408                                    docstring const & msg,
409                                    Buffer::ExportStatus (*asyncFunc)(Buffer const *, Buffer *, string const &),
410                                    Buffer::ExportStatus (Buffer::*syncFunc)(string const &, bool) const,
411                                    Buffer::ExportStatus (Buffer::*previewFunc)(string const &) const);
412
413         QVector<GuiWorkArea*> guiWorkAreas();
414 };
415
416 QSet<Buffer const *> GuiView::GuiViewPrivate::busyBuffers;
417
418
419 GuiView::GuiView(int id)
420         : d(*new GuiViewPrivate(this)), id_(id), closing_(false), busy_(0)
421 {
422         // GuiToolbars *must* be initialised before the menu bar.
423         normalSizedIcons(); // at least on Mac the default is 32 otherwise, which is huge
424         constructToolbars();
425
426         // set ourself as the current view. This is needed for the menu bar
427         // filling, at least for the static special menu item on Mac. Otherwise
428         // they are greyed out.
429         guiApp->setCurrentView(this);
430
431         // Fill up the menu bar.
432         guiApp->menus().fillMenuBar(menuBar(), this, true);
433
434         setCentralWidget(d.stack_widget_);
435
436         // Start autosave timer
437         if (lyxrc.autosave) {
438                 d.autosave_timeout_.timeout.connect(bind(&GuiView::autoSave, this));
439                 d.autosave_timeout_.setTimeout(lyxrc.autosave * 1000);
440                 d.autosave_timeout_.start();
441         }
442         connect(&d.statusbar_timer_, SIGNAL(timeout()),
443                 this, SLOT(clearMessage()));
444
445         // We don't want to keep the window in memory if it is closed.
446         setAttribute(Qt::WA_DeleteOnClose, true);
447
448 #if (!defined(Q_WS_WIN) && !defined(Q_WS_MACX))
449         // QIcon::fromTheme was introduced in Qt 4.6
450 #if (QT_VERSION >= 0x040600)
451         // assign an icon to main form. We do not do it under Qt/Win or Qt/Mac,
452         // since the icon is provided in the application bundle. We use a themed
453         // version when available and use the bundled one as fallback.
454         setWindowIcon(QIcon::fromTheme("lyx", getPixmap("images/", "lyx", "png")));
455 #else
456         setWindowIcon(getPixmap("images/", "lyx", "png"));
457 #endif
458
459 #endif
460
461         // use tabbed dock area for multiple docks
462         // (such as "source" and "messages")
463         setDockOptions(QMainWindow::ForceTabbedDocks);
464
465         // For Drag&Drop.
466         setAcceptDrops(true);
467
468         // add busy indicator to statusbar
469         QLabel * busylabel = new QLabel(statusBar());
470         statusBar()->addPermanentWidget(busylabel);
471         QString fn = toqstr(lyx::libFileSearch("images", "busy.gif").absFileName());
472         QMovie * busyanim = new QMovie(fn, QByteArray(), busylabel);
473         busylabel->setMovie(busyanim);
474         busyanim->start();
475         busylabel->hide();
476
477         connect(&d.processing_thread_watcher_, SIGNAL(started()), 
478                 busylabel, SLOT(show()));
479         connect(&d.processing_thread_watcher_, SIGNAL(finished()), 
480                 busylabel, SLOT(hide()));
481
482         statusBar()->setSizeGripEnabled(true);
483         updateStatusBar();
484
485         connect(&d.autosave_watcher_, SIGNAL(finished()), this,
486                 SLOT(autoSaveThreadFinished()));
487
488         connect(&d.processing_thread_watcher_, SIGNAL(started()), this,
489                 SLOT(processingThreadStarted()));
490         connect(&d.processing_thread_watcher_, SIGNAL(finished()), this,
491                 SLOT(processingThreadFinished()));
492
493         connect(this, SIGNAL(triggerShowDialog(QString const &, QString const &, Inset *)),
494                 SLOT(doShowDialog(QString const &, QString const &, Inset *)));
495
496         // Forbid too small unresizable window because it can happen
497         // with some window manager under X11.
498         setMinimumSize(300, 200);
499
500         if (lyxrc.allow_geometry_session) {
501                 // Now take care of session management.
502                 if (restoreLayout())
503                         return;
504         }
505
506         // no session handling, default to a sane size.
507         setGeometry(50, 50, 690, 510);
508         initToolbars();
509
510         // clear session data if any.
511         QSettings settings;
512         settings.remove("views");
513 }
514
515
516 GuiView::~GuiView()
517 {
518         delete &d;
519 }
520
521
522 QVector<GuiWorkArea*> GuiView::GuiViewPrivate::guiWorkAreas()
523 {
524         QVector<GuiWorkArea*> areas;
525         for (int i = 0; i < tabWorkAreaCount(); i++) {
526                 TabWorkArea* ta = tabWorkArea(i);
527                 for (int u = 0; u < ta->count(); u++) {
528                         areas << ta->workArea(u);
529                 }
530         }
531         return areas;
532 }
533
534 static void handleExportStatus(GuiView * view, Buffer::ExportStatus status,
535         string const & format)
536 {
537         docstring const fmt = formats.prettyName(format);
538         docstring msg;
539         switch (status) {
540         case Buffer::ExportSuccess:
541                 msg = bformat(_("Successful export to format: %1$s"), fmt);
542                 break;
543         case Buffer::ExportCancel:
544                 msg = _("Document export cancelled.");
545                 break;
546         case Buffer::ExportError:
547         case Buffer::ExportNoPathToFormat:
548         case Buffer::ExportTexPathHasSpaces:
549         case Buffer::ExportConverterError:
550                 msg = bformat(_("Error while exporting format: %1$s"), fmt);
551                 break;
552         case Buffer::PreviewSuccess:
553                 msg = bformat(_("Successful preview of format: %1$s"), fmt);
554                 break;
555         case Buffer::PreviewError:
556                 msg = bformat(_("Error while previewing format: %1$s"), fmt);
557                 break;
558         }
559         view->message(msg);
560 }
561
562
563 void GuiView::processingThreadStarted()
564 {
565 }
566
567
568 void GuiView::processingThreadFinished()
569 {
570         QFutureWatcher<Buffer::ExportStatus> const * watcher =
571                 static_cast<QFutureWatcher<Buffer::ExportStatus> const *>(sender());
572
573         Buffer::ExportStatus const status = watcher->result();
574         handleExportStatus(this, status, d.processing_format);
575         
576         updateToolbars();
577         BufferView const * const bv = currentBufferView();
578         if (bv && !bv->buffer().errorList("Export").empty()) {
579                 errors("Export");
580                 return;
581         }
582         errors(d.last_export_format);
583 }
584
585
586 void GuiView::autoSaveThreadFinished()
587 {
588         QFutureWatcher<docstring> const * watcher =
589                 static_cast<QFutureWatcher<docstring> const *>(sender());
590         message(watcher->result());
591         updateToolbars();
592 }
593
594
595 void GuiView::saveLayout() const
596 {
597         QSettings settings;
598         settings.beginGroup("views");
599         settings.beginGroup(QString::number(id_));
600 #ifdef Q_WS_X11
601         settings.setValue("pos", pos());
602         settings.setValue("size", size());
603 #else
604         settings.setValue("geometry", saveGeometry());
605 #endif
606         settings.setValue("layout", saveState(0));
607         settings.setValue("icon_size", iconSize());
608 }
609
610
611 void GuiView::saveUISettings() const
612 {
613         // Save the toolbar private states
614         ToolbarMap::iterator end = d.toolbars_.end();
615         for (ToolbarMap::iterator it = d.toolbars_.begin(); it != end; ++it)
616                 it->second->saveSession();
617         // Now take care of all other dialogs
618         map<string, DialogPtr>::const_iterator it = d.dialogs_.begin();
619         for (; it!= d.dialogs_.end(); ++it)
620                 it->second->saveSession();
621 }
622
623
624 bool GuiView::restoreLayout()
625 {
626         QSettings settings;
627         settings.beginGroup("views");
628         settings.beginGroup(QString::number(id_));
629         QString const icon_key = "icon_size";
630         if (!settings.contains(icon_key))
631                 return false;
632
633         //code below is skipped when when ~/.config/LyX is (re)created
634         QSize icon_size = settings.value(icon_key).toSize();
635         // Check whether session size changed.
636         if (icon_size.width() != int(d.smallIconSize) &&
637             icon_size.width() != int(d.normalIconSize) &&
638             icon_size.width() != int(d.bigIconSize)) {
639                 icon_size.setWidth(d.normalIconSize);
640                 icon_size.setHeight(d.normalIconSize);
641         }
642         setIconSize(icon_size);
643
644 #ifdef Q_WS_X11
645         QPoint pos = settings.value("pos", QPoint(50, 50)).toPoint();
646         QSize size = settings.value("size", QSize(690, 510)).toSize();
647         resize(size);
648         move(pos);
649 #else
650         // Work-around for bug #6034: the window ends up in an undetermined
651         // state when trying to restore a maximized window when it is
652         // already maximized.
653         if (!(windowState() & Qt::WindowMaximized))
654                 if (!restoreGeometry(settings.value("geometry").toByteArray()))
655                         setGeometry(50, 50, 690, 510);
656 #endif
657         // Make sure layout is correctly oriented.
658         setLayoutDirection(qApp->layoutDirection());
659
660         // Allow the toc and view-source dock widget to be restored if needed.
661         Dialog * dialog;
662         if ((dialog = findOrBuild("toc", true)))
663                 // see bug 5082. At least setup title and enabled state.
664                 // Visibility will be adjusted by restoreState below.
665                 dialog->prepareView();
666         if ((dialog = findOrBuild("view-source", true)))
667                 dialog->prepareView();
668         if ((dialog = findOrBuild("progress", true)))
669                 dialog->prepareView();
670         if ((dialog = findOrBuild("findreplaceadv", true)))
671                 dialog->prepareView();
672
673         if (!restoreState(settings.value("layout").toByteArray(), 0))
674                 initToolbars();
675         updateDialogs();
676         return true;
677 }
678
679
680 GuiToolbar * GuiView::toolbar(string const & name)
681 {
682         ToolbarMap::iterator it = d.toolbars_.find(name);
683         if (it != d.toolbars_.end())
684                 return it->second;
685
686         LYXERR(Debug::GUI, "Toolbar::display: no toolbar named " << name);
687         return 0;
688 }
689
690
691 void GuiView::constructToolbars()
692 {
693         ToolbarMap::iterator it = d.toolbars_.begin();
694         for (; it != d.toolbars_.end(); ++it)
695                 delete it->second;
696         d.toolbars_.clear();
697
698         // I don't like doing this here, but the standard toolbar
699         // destroys this object when it's destroyed itself (vfr)
700         d.layout_ = new LayoutBox(*this);
701         d.stack_widget_->addWidget(d.layout_);
702         d.layout_->move(0,0);
703
704         // extracts the toolbars from the backend
705         Toolbars::Infos::iterator cit = guiApp->toolbars().begin();
706         Toolbars::Infos::iterator end = guiApp->toolbars().end();
707         for (; cit != end; ++cit)
708                 d.toolbars_[cit->name] =  new GuiToolbar(*cit, *this);
709 }
710
711
712 void GuiView::initToolbars()
713 {
714         // extracts the toolbars from the backend
715         Toolbars::Infos::iterator cit = guiApp->toolbars().begin();
716         Toolbars::Infos::iterator end = guiApp->toolbars().end();
717         for (; cit != end; ++cit) {
718                 GuiToolbar * tb = toolbar(cit->name);
719                 if (!tb)
720                         continue;
721                 int const visibility = guiApp->toolbars().defaultVisibility(cit->name);
722                 bool newline = !(visibility & Toolbars::SAMEROW);
723                 tb->setVisible(false);
724                 tb->setVisibility(visibility);
725
726                 if (visibility & Toolbars::TOP) {
727                         if (newline)
728                                 addToolBarBreak(Qt::TopToolBarArea);
729                         addToolBar(Qt::TopToolBarArea, tb);
730                 }
731
732                 if (visibility & Toolbars::BOTTOM) {
733                         if (newline)
734                                 addToolBarBreak(Qt::BottomToolBarArea);
735                         addToolBar(Qt::BottomToolBarArea, tb);
736                 }
737
738                 if (visibility & Toolbars::LEFT) {
739                         if (newline)
740                                 addToolBarBreak(Qt::LeftToolBarArea);
741                         addToolBar(Qt::LeftToolBarArea, tb);
742                 }
743
744                 if (visibility & Toolbars::RIGHT) {
745                         if (newline)
746                                 addToolBarBreak(Qt::RightToolBarArea);
747                         addToolBar(Qt::RightToolBarArea, tb);
748                 }
749
750                 if (visibility & Toolbars::ON)
751                         tb->setVisible(true);
752         }
753 }
754
755
756 TocModels & GuiView::tocModels()
757 {
758         return d.toc_models_;
759 }
760
761
762 void GuiView::setFocus()
763 {
764         LYXERR(Debug::DEBUG, "GuiView::setFocus()" << this);
765         QMainWindow::setFocus();
766 }
767
768
769 void GuiView::focusInEvent(QFocusEvent * e)
770 {
771         LYXERR(Debug::DEBUG, "GuiView::focusInEvent()" << this);
772         QMainWindow::focusInEvent(e);
773         // Make sure guiApp points to the correct view.
774         guiApp->setCurrentView(this);
775         if (currentWorkArea())
776                 currentWorkArea()->setFocus();
777         else if (currentMainWorkArea())
778                 currentMainWorkArea()->setFocus();
779         else
780                 d.bg_widget_->setFocus();
781 }
782
783
784 QMenu * GuiView::createPopupMenu()
785 {
786         return d.toolBarPopup(this);
787 }
788
789
790 void GuiView::showEvent(QShowEvent * e)
791 {
792         LYXERR(Debug::GUI, "Passed Geometry "
793                 << size().height() << "x" << size().width()
794                 << "+" << pos().x() << "+" << pos().y());
795
796         if (d.splitter_->count() == 0)
797                 // No work area, switch to the background widget.
798                 d.setBackground();
799
800         updateToolbars();
801         QMainWindow::showEvent(e);
802 }
803
804
805 bool GuiView::closeScheduled()
806 {
807         closing_ = true;
808         return close();
809 }
810
811
812 /** Destroy only all tabbed WorkAreas. Destruction of other WorkAreas
813  ** is responsibility of the container (e.g., dialog)
814  **/
815 void GuiView::closeEvent(QCloseEvent * close_event)
816 {
817         LYXERR(Debug::DEBUG, "GuiView::closeEvent()");
818
819         if (!GuiViewPrivate::busyBuffers.isEmpty()) {
820                 Alert::warning(_("Exit LyX"), 
821                         _("LyX could not be closed because documents are being processed by LyX."));
822                 close_event->setAccepted(false);
823                 return;
824         }
825
826         // If the user pressed the x (so we didn't call closeView
827         // programmatically), we want to clear all existing entries.
828         if (!closing_)
829                 theSession().lastOpened().clear();
830         closing_ = true;
831
832         writeSession();
833
834         // it can happen that this event arrives without selecting the view,
835         // e.g. when clicking the close button on a background window.
836         setFocus();
837         if (!closeWorkAreaAll()) {
838                 closing_ = false;
839                 close_event->ignore();
840                 return;
841         }
842
843         // Make sure that nothing will use this to be closed View.
844         guiApp->unregisterView(this);
845
846         if (isFullScreen()) {
847                 // Switch off fullscreen before closing.
848                 toggleFullScreen();
849                 updateDialogs();
850         }
851
852         // Make sure the timer time out will not trigger a statusbar update.
853         d.statusbar_timer_.stop();
854
855         // Saving fullscreen requires additional tweaks in the toolbar code.
856         // It wouldn't also work under linux natively.
857         if (lyxrc.allow_geometry_session) {
858                 saveLayout();
859                 saveUISettings();
860         }
861
862         close_event->accept();
863 }
864
865
866 void GuiView::dragEnterEvent(QDragEnterEvent * event)
867 {
868         if (event->mimeData()->hasUrls())
869                 event->accept();
870         /// \todo Ask lyx-devel is this is enough:
871         /// if (event->mimeData()->hasFormat("text/plain"))
872         ///     event->acceptProposedAction();
873 }
874
875
876 void GuiView::dropEvent(QDropEvent * event)
877 {
878         QList<QUrl> files = event->mimeData()->urls();
879         if (files.isEmpty())
880                 return;
881
882         LYXERR(Debug::GUI, "GuiView::dropEvent: got URLs!");
883         for (int i = 0; i != files.size(); ++i) {
884                 string const file = os::internal_path(fromqstr(
885                         files.at(i).toLocalFile()));
886                 if (file.empty())
887                         continue;
888
889                 string const ext = support::getExtension(file);
890                 vector<const Format *> found_formats;
891
892                 // Find all formats that have the correct extension.
893                 vector<const Format *> const & import_formats
894                         = theConverters().importableFormats();
895                 vector<const Format *>::const_iterator it = import_formats.begin();
896                 for (; it != import_formats.end(); ++it)
897                         if ((*it)->hasExtension(ext))
898                                 found_formats.push_back(*it);
899
900                 FuncRequest cmd;
901                 if (found_formats.size() >= 1) {
902                         if (found_formats.size() > 1) {
903                                 //FIXME: show a dialog to choose the correct importable format
904                                 LYXERR(Debug::FILES,
905                                         "Multiple importable formats found, selecting first");
906                         }
907                         string const arg = found_formats[0]->name() + " " + file;
908                         cmd = FuncRequest(LFUN_BUFFER_IMPORT, arg);
909                 }
910                 else {
911                         //FIXME: do we have to explicitly check whether it's a lyx file?
912                         LYXERR(Debug::FILES,
913                                 "No formats found, trying to open it as a lyx file");
914                         cmd = FuncRequest(LFUN_FILE_OPEN, file);
915                 }
916                 // add the functions to the queue
917                 guiApp->addToFuncRequestQueue(cmd);
918                 event->accept();
919         }
920         // now process the collected functions. We perform the events
921         // asynchronously. This prevents potential problems in case the
922         // BufferView is closed within an event.
923         guiApp->processFuncRequestQueueAsync();
924 }
925
926
927 void GuiView::message(docstring const & str)
928 {
929         if (ForkedProcess::iAmAChild())
930                 return;
931
932         // call is moved to GUI-thread by GuiProgress
933         d.progress_->appendMessage(toqstr(str));
934 }
935
936
937 void GuiView::clearMessageText()
938 {
939         message(docstring());
940 }
941
942
943 void GuiView::updateStatusBarMessage(QString const & str)
944 {
945         statusBar()->showMessage(str);
946         d.statusbar_timer_.stop();
947         d.statusbar_timer_.start(3000);
948 }
949
950
951 void GuiView::smallSizedIcons()
952 {
953         setIconSize(QSize(d.smallIconSize, d.smallIconSize));
954 }
955
956
957 void GuiView::normalSizedIcons()
958 {
959         setIconSize(QSize(d.normalIconSize, d.normalIconSize));
960 }
961
962
963 void GuiView::bigSizedIcons()
964 {
965         setIconSize(QSize(d.bigIconSize, d.bigIconSize));
966 }
967
968
969 void GuiView::clearMessage()
970 {
971         // FIXME: This code was introduced in r19643 to fix bug #4123. However,
972         // the hasFocus function mostly returns false, even if the focus is on
973         // a workarea in this view.
974         //if (!hasFocus())
975         //      return;
976         showMessage();
977         d.statusbar_timer_.stop();
978 }
979
980
981 void GuiView::updateWindowTitle(GuiWorkArea * wa)
982 {
983         if (wa != d.current_work_area_
984                 || wa->bufferView().buffer().isInternal())
985                 return;
986         setWindowTitle(qt_("LyX: ") + wa->windowTitle());
987         setWindowIconText(wa->windowIconText());
988 }
989
990
991 void GuiView::on_currentWorkAreaChanged(GuiWorkArea * wa)
992 {
993         if (d.current_work_area_)
994                 QObject::disconnect(d.current_work_area_, SIGNAL(busy(bool)),
995                         this, SLOT(setBusy(bool)));
996         disconnectBuffer();
997         disconnectBufferView();
998         connectBufferView(wa->bufferView());
999         connectBuffer(wa->bufferView().buffer());
1000         d.current_work_area_ = wa;
1001         QObject::connect(wa, SIGNAL(titleChanged(GuiWorkArea *)),
1002                 this, SLOT(updateWindowTitle(GuiWorkArea *)));
1003         QObject::connect(wa, SIGNAL(busy(bool)), this, SLOT(setBusy(bool)));
1004         updateWindowTitle(wa);
1005
1006         structureChanged();
1007
1008         // The document settings needs to be reinitialised.
1009         updateDialog("document", "");
1010
1011         // Buffer-dependent dialogs must be updated. This is done here because
1012         // some dialogs require buffer()->text.
1013         updateDialogs();
1014 }
1015
1016
1017 void GuiView::on_lastWorkAreaRemoved()
1018 {
1019         if (closing_)
1020                 // We already are in a close event. Nothing more to do.
1021                 return;
1022
1023         if (d.splitter_->count() > 1)
1024                 // We have a splitter so don't close anything.
1025                 return;
1026
1027         // Reset and updates the dialogs.
1028         d.toc_models_.reset(0);
1029         updateDialog("document", "");
1030         updateDialogs();
1031
1032         resetWindowTitleAndIconText();
1033         updateStatusBar();
1034
1035         if (lyxrc.open_buffers_in_tabs)
1036                 // Nothing more to do, the window should stay open.
1037                 return;
1038
1039         if (guiApp->viewIds().size() > 1) {
1040                 close();
1041                 return;
1042         }
1043
1044 #ifdef Q_WS_MACX
1045         // On Mac we also close the last window because the application stay
1046         // resident in memory. On other platforms we don't close the last
1047         // window because this would quit the application.
1048         close();
1049 #endif
1050 }
1051
1052
1053 void GuiView::updateStatusBar()
1054 {
1055         // let the user see the explicit message
1056         if (d.statusbar_timer_.isActive())
1057                 return;
1058
1059         showMessage();
1060 }
1061
1062
1063 void GuiView::showMessage()
1064 {
1065         QString msg = toqstr(theGuiApp()->viewStatusMessage());
1066         if (msg.isEmpty()) {
1067                 BufferView const * bv = currentBufferView();
1068                 if (bv)
1069                         msg = toqstr(bv->cursor().currentState());
1070                 else
1071                         msg = qt_("Welcome to LyX!");
1072         }
1073         statusBar()->showMessage(msg);
1074 }
1075
1076
1077 bool GuiView::event(QEvent * e)
1078 {
1079         switch (e->type())
1080         {
1081         // Useful debug code:
1082         //case QEvent::ActivationChange:
1083         //case QEvent::WindowDeactivate:
1084         //case QEvent::Paint:
1085         //case QEvent::Enter:
1086         //case QEvent::Leave:
1087         //case QEvent::HoverEnter:
1088         //case QEvent::HoverLeave:
1089         //case QEvent::HoverMove:
1090         //case QEvent::StatusTip:
1091         //case QEvent::DragEnter:
1092         //case QEvent::DragLeave:
1093         //case QEvent::Drop:
1094         //      break;
1095
1096         case QEvent::WindowActivate: {
1097                 GuiView * old_view = guiApp->currentView();
1098                 if (this == old_view) {
1099                         setFocus();
1100                         return QMainWindow::event(e);
1101                 }
1102                 if (old_view && old_view->currentBufferView()) {
1103                         // save current selection to the selection buffer to allow
1104                         // middle-button paste in this window.
1105                         cap::saveSelection(old_view->currentBufferView()->cursor());
1106                 }
1107                 guiApp->setCurrentView(this);
1108                 if (d.current_work_area_) {
1109                         BufferView & bv = d.current_work_area_->bufferView();
1110                         connectBufferView(bv);
1111                         connectBuffer(bv.buffer());
1112                         // The document structure, name and dialogs might have
1113                         // changed in another view.
1114                         structureChanged();
1115                         // The document settings needs to be reinitialised.
1116                         updateDialog("document", "");
1117                         updateDialogs();
1118                 } else {
1119                         resetWindowTitleAndIconText();
1120                 }
1121                 setFocus();
1122                 return QMainWindow::event(e);
1123         }
1124
1125         case QEvent::ShortcutOverride: {
1126                 // See bug 4888
1127                 if (isFullScreen() && menuBar()->isHidden()) {
1128                         QKeyEvent * ke = static_cast<QKeyEvent*>(e);
1129                         // FIXME: we should also try to detect special LyX shortcut such as
1130                         // Alt-P and Alt-M. Right now there is a hack in
1131                         // GuiWorkArea::processKeySym() that hides again the menubar for
1132                         // those cases.
1133                         if (ke->modifiers() & Qt::AltModifier && ke->key() != Qt::Key_Alt) {
1134                                 menuBar()->show();
1135                                 return QMainWindow::event(e);
1136                         }
1137                 }
1138                 return QMainWindow::event(e);
1139         }
1140
1141         default:
1142                 return QMainWindow::event(e);
1143         }
1144 }
1145
1146 void GuiView::resetWindowTitleAndIconText()
1147 {
1148         setWindowTitle(qt_("LyX"));
1149         setWindowIconText(qt_("LyX"));
1150 }
1151
1152 bool GuiView::focusNextPrevChild(bool /*next*/)
1153 {
1154         setFocus();
1155         return true;
1156 }
1157
1158
1159 bool GuiView::busy() const
1160 {
1161         return busy_ > 0;
1162 }
1163
1164
1165 void GuiView::setBusy(bool busy)
1166 {
1167         bool const busy_before = busy_ > 0;
1168         busy ? ++busy_ : --busy_;
1169         if ((busy_ > 0) == busy_before)
1170                 // busy state didn't change
1171                 return;
1172
1173         if (busy) {
1174                 QApplication::setOverrideCursor(Qt::WaitCursor);
1175                 return;
1176         }
1177         QApplication::restoreOverrideCursor();
1178         updateLayoutList();     
1179 }
1180
1181
1182 GuiWorkArea * GuiView::workArea(int index)
1183 {
1184         if (TabWorkArea * twa = d.currentTabWorkArea())
1185                 if (index < twa->count())
1186                         return dynamic_cast<GuiWorkArea *>(twa->widget(index));
1187         return 0;
1188 }
1189
1190
1191 GuiWorkArea * GuiView::workArea(Buffer & buffer)
1192 {
1193         if (currentWorkArea()
1194                 && &currentWorkArea()->bufferView().buffer() == &buffer)
1195                 return (GuiWorkArea *) currentWorkArea();
1196         if (TabWorkArea * twa = d.currentTabWorkArea())
1197                 return twa->workArea(buffer);
1198         return 0;
1199 }
1200
1201
1202 GuiWorkArea * GuiView::addWorkArea(Buffer & buffer)
1203 {
1204         // Automatically create a TabWorkArea if there are none yet.
1205         TabWorkArea * tab_widget = d.splitter_->count()
1206                 ? d.currentTabWorkArea() : addTabWorkArea();
1207         return tab_widget->addWorkArea(buffer, *this);
1208 }
1209
1210
1211 TabWorkArea * GuiView::addTabWorkArea()
1212 {
1213         TabWorkArea * twa = new TabWorkArea;
1214         QObject::connect(twa, SIGNAL(currentWorkAreaChanged(GuiWorkArea *)),
1215                 this, SLOT(on_currentWorkAreaChanged(GuiWorkArea *)));
1216         QObject::connect(twa, SIGNAL(lastWorkAreaRemoved()),
1217                          this, SLOT(on_lastWorkAreaRemoved()));
1218
1219         d.splitter_->addWidget(twa);
1220         d.stack_widget_->setCurrentWidget(d.splitter_);
1221         return twa;
1222 }
1223
1224
1225 GuiWorkArea const * GuiView::currentWorkArea() const
1226 {
1227         return d.current_work_area_;
1228 }
1229
1230
1231 GuiWorkArea * GuiView::currentWorkArea()
1232 {
1233         return d.current_work_area_;
1234 }
1235
1236
1237 GuiWorkArea const * GuiView::currentMainWorkArea() const
1238 {
1239         if (!d.currentTabWorkArea())
1240                 return 0;
1241         return d.currentTabWorkArea()->currentWorkArea();
1242 }
1243
1244
1245 GuiWorkArea * GuiView::currentMainWorkArea()
1246 {
1247         if (!d.currentTabWorkArea())
1248                 return 0;
1249         return d.currentTabWorkArea()->currentWorkArea();
1250 }
1251
1252
1253 void GuiView::setCurrentWorkArea(GuiWorkArea * wa)
1254 {
1255         LYXERR(Debug::DEBUG, "Setting current wa: " << wa << endl);
1256         if (!wa) {
1257                 d.current_work_area_ = 0;
1258                 d.setBackground();
1259                 return;
1260         }
1261
1262         // FIXME: I've no clue why this is here and why it accesses
1263         //  theGuiApp()->currentView, which might be 0 (bug 6464).
1264         //  See also 27525 (vfr).
1265         if (theGuiApp()->currentView() == this
1266                   && theGuiApp()->currentView()->currentWorkArea() == wa)
1267                 return;
1268
1269         if (currentBufferView())
1270                 cap::saveSelection(currentBufferView()->cursor());
1271
1272         theGuiApp()->setCurrentView(this);
1273         d.current_work_area_ = wa;
1274         
1275         // We need to reset this now, because it will need to be
1276         // right if the tabWorkArea gets reset in the for loop. We
1277         // will change it back if we aren't in that case.
1278         GuiWorkArea * const old_cmwa = d.current_main_work_area_;
1279         d.current_main_work_area_ = wa;
1280
1281         for (int i = 0; i != d.splitter_->count(); ++i) {
1282                 if (d.tabWorkArea(i)->setCurrentWorkArea(wa)) {
1283                         LYXERR(Debug::DEBUG, "Current wa: " << currentWorkArea() 
1284                                 << ", Current main wa: " << currentMainWorkArea());
1285                         return;
1286                 }
1287         }
1288         
1289         d.current_main_work_area_ = old_cmwa;
1290         
1291         LYXERR(Debug::DEBUG, "This is not a tabbed wa");
1292         on_currentWorkAreaChanged(wa);
1293         BufferView & bv = wa->bufferView();
1294         bv.cursor().fixIfBroken();
1295         bv.updateMetrics();
1296         wa->setUpdatesEnabled(true);
1297         LYXERR(Debug::DEBUG, "Current wa: " << currentWorkArea() << ", Current main wa: " << currentMainWorkArea());
1298 }
1299
1300
1301 void GuiView::removeWorkArea(GuiWorkArea * wa)
1302 {
1303         LASSERT(wa, return);
1304         if (wa == d.current_work_area_) {
1305                 disconnectBuffer();
1306                 disconnectBufferView();
1307                 d.current_work_area_ = 0;
1308                 d.current_main_work_area_ = 0;
1309         }
1310
1311         bool found_twa = false;
1312         for (int i = 0; i != d.splitter_->count(); ++i) {
1313                 TabWorkArea * twa = d.tabWorkArea(i);
1314                 if (twa->removeWorkArea(wa)) {
1315                         // Found in this tab group, and deleted the GuiWorkArea.
1316                         found_twa = true;
1317                         if (twa->count() != 0) {
1318                                 if (d.current_work_area_ == 0)
1319                                         // This means that we are closing the current GuiWorkArea, so
1320                                         // switch to the next GuiWorkArea in the found TabWorkArea.
1321                                         setCurrentWorkArea(twa->currentWorkArea());
1322                         } else {
1323                                 // No more WorkAreas in this tab group, so delete it.
1324                                 delete twa;
1325                         }
1326                         break;
1327                 }
1328         }
1329
1330         // It is not a tabbed work area (i.e., the search work area), so it
1331         // should be deleted by other means.
1332         LASSERT(found_twa, /* */);
1333
1334         if (d.current_work_area_ == 0) {
1335                 if (d.splitter_->count() != 0) {
1336                         TabWorkArea * twa = d.currentTabWorkArea();
1337                         setCurrentWorkArea(twa->currentWorkArea());
1338                 } else {
1339                         // No more work areas, switch to the background widget.
1340                         setCurrentWorkArea(0);
1341                 }
1342         }
1343 }
1344
1345
1346 LayoutBox * GuiView::getLayoutDialog() const
1347 {
1348         return d.layout_;
1349 }
1350
1351
1352 void GuiView::updateLayoutList()
1353 {
1354         if (d.layout_)
1355                 d.layout_->updateContents(false);
1356 }
1357
1358
1359 void GuiView::updateToolbars()
1360 {
1361         ToolbarMap::iterator end = d.toolbars_.end();
1362         if (d.current_work_area_) {
1363                 bool const math =
1364                         d.current_work_area_->bufferView().cursor().inMathed()
1365                         && !d.current_work_area_->bufferView().cursor().inRegexped();
1366                 bool const table =
1367                         lyx::getStatus(FuncRequest(LFUN_LAYOUT_TABULAR)).enabled();
1368                 bool const review =
1369                         lyx::getStatus(FuncRequest(LFUN_CHANGES_TRACK)).enabled() &&
1370                         lyx::getStatus(FuncRequest(LFUN_CHANGES_TRACK)).onOff(true);
1371                 bool const mathmacrotemplate =
1372                         lyx::getStatus(FuncRequest(LFUN_IN_MATHMACROTEMPLATE)).enabled();
1373                 bool const ipa =
1374                         lyx::getStatus(FuncRequest(LFUN_IN_IPA)).enabled();
1375
1376                 for (ToolbarMap::iterator it = d.toolbars_.begin(); it != end; ++it)
1377                         it->second->update(math, table, review, mathmacrotemplate, ipa);
1378         } else
1379                 for (ToolbarMap::iterator it = d.toolbars_.begin(); it != end; ++it)
1380                         it->second->update(false, false, false, false, false);
1381 }
1382
1383
1384 void GuiView::setBuffer(Buffer * newBuffer)
1385 {
1386         LYXERR(Debug::DEBUG, "Setting buffer: " << newBuffer << endl);
1387         LASSERT(newBuffer, return);
1388         
1389         GuiWorkArea * wa = workArea(*newBuffer);
1390         if (wa == 0) {
1391                 setBusy(true);
1392                 newBuffer->masterBuffer()->updateBuffer();
1393                 setBusy(false);
1394                 wa = addWorkArea(*newBuffer);
1395                 // scroll to the position when the BufferView was last closed
1396                 if (lyxrc.use_lastfilepos) {
1397                         LastFilePosSection::FilePos filepos =
1398                                 theSession().lastFilePos().load(newBuffer->fileName());
1399                         wa->bufferView().moveToPosition(filepos.pit, filepos.pos, 0, 0);
1400                 }
1401         } else {
1402                 //Disconnect the old buffer...there's no new one.
1403                 disconnectBuffer();
1404         }
1405         connectBuffer(*newBuffer);
1406         connectBufferView(wa->bufferView());
1407         setCurrentWorkArea(wa);
1408 }
1409
1410
1411 void GuiView::connectBuffer(Buffer & buf)
1412 {
1413         buf.setGuiDelegate(this);
1414 }
1415
1416
1417 void GuiView::disconnectBuffer()
1418 {
1419         if (d.current_work_area_)
1420                 d.current_work_area_->bufferView().buffer().setGuiDelegate(0);
1421 }
1422
1423
1424 void GuiView::connectBufferView(BufferView & bv)
1425 {
1426         bv.setGuiDelegate(this);
1427 }
1428
1429
1430 void GuiView::disconnectBufferView()
1431 {
1432         if (d.current_work_area_)
1433                 d.current_work_area_->bufferView().setGuiDelegate(0);
1434 }
1435
1436
1437 void GuiView::errors(string const & error_type, bool from_master)
1438 {
1439         BufferView const * const bv = currentBufferView();
1440         if (!bv)
1441                 return;
1442
1443 #if EXPORT_in_THREAD
1444         // We are called with from_master == false by default, so we
1445         // have to figure out whether that is the case or not.
1446         ErrorList & el = bv->buffer().errorList(error_type);
1447         if (el.empty()) {
1448             el = bv->buffer().masterBuffer()->errorList(error_type);
1449             from_master = true;
1450         }
1451 #else
1452         ErrorList const & el = from_master ?
1453                 bv->buffer().masterBuffer()->errorList(error_type) :
1454                 bv->buffer().errorList(error_type);
1455 #endif
1456
1457         if (el.empty())
1458                 return;
1459
1460         string data = error_type;
1461         if (from_master)
1462                 data = "from_master|" + error_type;
1463         showDialog("errorlist", data);
1464 }
1465
1466
1467 void GuiView::updateTocItem(string const & type, DocIterator const & dit)
1468 {
1469         d.toc_models_.updateItem(toqstr(type), dit);
1470 }
1471
1472
1473 void GuiView::structureChanged()
1474 {
1475         d.toc_models_.reset(documentBufferView());
1476         // Navigator needs more than a simple update in this case. It needs to be
1477         // rebuilt.
1478         updateDialog("toc", "");
1479 }
1480
1481
1482 void GuiView::updateDialog(string const & name, string const & data)
1483 {
1484         if (!isDialogVisible(name))
1485                 return;
1486
1487         map<string, DialogPtr>::const_iterator it = d.dialogs_.find(name);
1488         if (it == d.dialogs_.end())
1489                 return;
1490
1491         Dialog * const dialog = it->second.get();
1492         if (dialog->isVisibleView())
1493                 dialog->initialiseParams(data);
1494 }
1495
1496
1497 BufferView * GuiView::documentBufferView()
1498 {
1499         return currentMainWorkArea()
1500                 ? &currentMainWorkArea()->bufferView()
1501                 : 0;
1502 }
1503
1504
1505 BufferView const * GuiView::documentBufferView() const
1506 {
1507         return currentMainWorkArea()
1508                 ? &currentMainWorkArea()->bufferView()
1509                 : 0;
1510 }
1511
1512
1513 BufferView * GuiView::currentBufferView()
1514 {
1515         return d.current_work_area_ ? &d.current_work_area_->bufferView() : 0;
1516 }
1517
1518
1519 BufferView const * GuiView::currentBufferView() const
1520 {
1521         return d.current_work_area_ ? &d.current_work_area_->bufferView() : 0;
1522 }
1523
1524
1525 docstring GuiView::GuiViewPrivate::autosaveAndDestroy(
1526         Buffer const * orig, Buffer * clone)
1527 {
1528         bool const success = clone->autoSave();
1529         delete clone;
1530         busyBuffers.remove(orig);
1531         return success
1532                 ? _("Automatic save done.")
1533                 : _("Automatic save failed!");
1534 }
1535
1536
1537 void GuiView::autoSave()
1538 {
1539         LYXERR(Debug::INFO, "Running autoSave()");
1540
1541         Buffer * buffer = documentBufferView()
1542                 ? &documentBufferView()->buffer() : 0;
1543         if (!buffer) {
1544                 resetAutosaveTimers();
1545                 return;
1546         }
1547
1548         GuiViewPrivate::busyBuffers.insert(buffer);
1549         QFuture<docstring> f = QtConcurrent::run(GuiViewPrivate::autosaveAndDestroy,
1550                 buffer, buffer->cloneBufferOnly());
1551         d.autosave_watcher_.setFuture(f);
1552         resetAutosaveTimers();
1553 }
1554
1555
1556 void GuiView::resetAutosaveTimers()
1557 {
1558         if (lyxrc.autosave)
1559                 d.autosave_timeout_.restart();
1560 }
1561
1562
1563 bool GuiView::getStatus(FuncRequest const & cmd, FuncStatus & flag)
1564 {
1565         bool enable = true;
1566         Buffer * buf = currentBufferView()
1567                 ? &currentBufferView()->buffer() : 0;
1568         Buffer * doc_buffer = documentBufferView()
1569                 ? &(documentBufferView()->buffer()) : 0;
1570
1571         // Check whether we need a buffer
1572         if (!lyxaction.funcHasFlag(cmd.action(), LyXAction::NoBuffer) && !buf) {
1573                 // no, exit directly
1574                 flag.message(from_utf8(N_("Command not allowed with"
1575                                         "out any document open")));
1576                 flag.setEnabled(false);
1577                 return true;
1578         }
1579
1580         if (cmd.origin() == FuncRequest::TOC) {
1581                 GuiToc * toc = static_cast<GuiToc*>(findOrBuild("toc", false));
1582                 if (!toc || !toc->getStatus(documentBufferView()->cursor(), cmd, flag))
1583                         flag.setEnabled(false);
1584                 return true;
1585         }
1586
1587         switch(cmd.action()) {
1588         case LFUN_BUFFER_IMPORT:
1589                 break;
1590
1591         case LFUN_MASTER_BUFFER_UPDATE:
1592         case LFUN_MASTER_BUFFER_VIEW:
1593                 enable = doc_buffer && doc_buffer->parent() != 0
1594                         && !d.processing_thread_watcher_.isRunning();
1595                 break;
1596
1597         case LFUN_BUFFER_UPDATE:
1598         case LFUN_BUFFER_VIEW: {
1599                 if (!doc_buffer || d.processing_thread_watcher_.isRunning()) {
1600                         enable = false;
1601                         break;
1602                 }
1603                 string format = to_utf8(cmd.argument());
1604                 if (cmd.argument().empty())
1605                         format = doc_buffer->params().getDefaultOutputFormat();
1606                 enable = doc_buffer->params().isExportableFormat(format);
1607                 break;
1608         }
1609
1610         case LFUN_BUFFER_RELOAD:
1611                 enable = doc_buffer && !doc_buffer->isUnnamed()
1612                         && doc_buffer->fileName().exists()
1613                         && (!doc_buffer->isClean()
1614                            || doc_buffer->isExternallyModified(Buffer::timestamp_method));
1615                 break;
1616
1617         case LFUN_BUFFER_CHILD_OPEN:
1618                 enable = doc_buffer;
1619                 break;
1620
1621         case LFUN_BUFFER_WRITE:
1622                 enable = doc_buffer && (doc_buffer->isUnnamed() || !doc_buffer->isClean());
1623                 break;
1624
1625         //FIXME: This LFUN should be moved to GuiApplication.
1626         case LFUN_BUFFER_WRITE_ALL: {
1627                 // We enable the command only if there are some modified buffers
1628                 Buffer * first = theBufferList().first();
1629                 enable = false;
1630                 if (!first)
1631                         break;
1632                 Buffer * b = first;
1633                 // We cannot use a for loop as the buffer list is a cycle.
1634                 do {
1635                         if (!b->isClean()) {
1636                                 enable = true;
1637                                 break;
1638                         }
1639                         b = theBufferList().next(b);
1640                 } while (b != first);
1641                 break;
1642         }
1643
1644         case LFUN_BUFFER_WRITE_AS:
1645         case LFUN_BUFFER_EXPORT_AS:
1646                 enable = doc_buffer;
1647                 break;
1648
1649         case LFUN_BUFFER_CLOSE:
1650         case LFUN_VIEW_CLOSE:
1651                 enable = doc_buffer;
1652                 break;
1653
1654         case LFUN_BUFFER_CLOSE_ALL:
1655                 enable = theBufferList().last() != theBufferList().first();
1656                 break;
1657
1658         case LFUN_VIEW_SPLIT:
1659                 if (cmd.getArg(0) == "vertical")
1660                         enable = doc_buffer && (d.splitter_->count() == 1 ||
1661                                          d.splitter_->orientation() == Qt::Vertical);
1662                 else
1663                         enable = doc_buffer && (d.splitter_->count() == 1 ||
1664                                          d.splitter_->orientation() == Qt::Horizontal);
1665                 break;
1666
1667         case LFUN_TAB_GROUP_CLOSE:
1668                 enable = d.tabWorkAreaCount() > 1;
1669                 break;
1670
1671         case LFUN_TOOLBAR_TOGGLE: {
1672                 string const name = cmd.getArg(0);
1673                 if (GuiToolbar * t = toolbar(name))
1674                         flag.setOnOff(t->isVisible());
1675                 else {
1676                         enable = false;
1677                         docstring const msg =
1678                                 bformat(_("Unknown toolbar \"%1$s\""), from_utf8(name));
1679                         flag.message(msg);
1680                 }
1681                 break;
1682         }
1683
1684         case LFUN_DROP_LAYOUTS_CHOICE:
1685                 enable = buf;
1686                 break;
1687
1688         case LFUN_UI_TOGGLE:
1689                 flag.setOnOff(isFullScreen());
1690                 break;
1691
1692         case LFUN_DIALOG_DISCONNECT_INSET:
1693                 break;
1694
1695         case LFUN_DIALOG_HIDE:
1696                 // FIXME: should we check if the dialog is shown?
1697                 break;
1698
1699         case LFUN_DIALOG_TOGGLE:
1700                 flag.setOnOff(isDialogVisible(cmd.getArg(0)));
1701                 // fall through to set "enable"
1702         case LFUN_DIALOG_SHOW: {
1703                 string const name = cmd.getArg(0);
1704                 if (!doc_buffer)
1705                         enable = name == "aboutlyx"
1706                                 || name == "file" //FIXME: should be removed.
1707                                 || name == "prefs"
1708                                 || name == "texinfo"
1709                                 || name == "progress"
1710                                 || name == "compare";
1711                 else if (name == "print")
1712                         enable = doc_buffer->params().isExportable("dvi")
1713                                 && lyxrc.print_command != "none";
1714                 else if (name == "character" || name == "symbols") {
1715                         if (!buf || buf->isReadonly())
1716                                 enable = false;
1717                         else {
1718                                 Cursor const & cur = currentBufferView()->cursor();
1719                                 enable = !(cur.inTexted() && cur.paragraph().isPassThru());
1720                         }
1721                 }
1722                 else if (name == "latexlog")
1723                         enable = FileName(doc_buffer->logName()).isReadableFile();
1724                 else if (name == "spellchecker")
1725                         enable = theSpellChecker() 
1726                                 && !doc_buffer->isReadonly()
1727                                 && !doc_buffer->text().empty();
1728                 else if (name == "vclog")
1729                         enable = doc_buffer->lyxvc().inUse();
1730                 break;
1731         }
1732
1733         case LFUN_DIALOG_UPDATE: {
1734                 string const name = cmd.getArg(0);
1735                 if (!buf)
1736                         enable = name == "prefs";
1737                 break;
1738         }
1739
1740         case LFUN_COMMAND_EXECUTE:
1741         case LFUN_MESSAGE:
1742         case LFUN_MENU_OPEN:
1743                 // Nothing to check.
1744                 break;
1745
1746         case LFUN_COMPLETION_INLINE:
1747                 if (!d.current_work_area_
1748                         || !d.current_work_area_->completer().inlinePossible(
1749                         currentBufferView()->cursor()))
1750                         enable = false;
1751                 break;
1752
1753         case LFUN_COMPLETION_POPUP:
1754                 if (!d.current_work_area_
1755                         || !d.current_work_area_->completer().popupPossible(
1756                         currentBufferView()->cursor()))
1757                         enable = false;
1758                 break;
1759
1760         case LFUN_COMPLETION_COMPLETE:
1761                 if (!d.current_work_area_
1762                         || !d.current_work_area_->completer().inlinePossible(
1763                         currentBufferView()->cursor()))
1764                         enable = false;
1765                 break;
1766
1767         case LFUN_COMPLETION_ACCEPT:
1768                 if (!d.current_work_area_
1769                         || (!d.current_work_area_->completer().popupVisible()
1770                         && !d.current_work_area_->completer().inlineVisible()
1771                         && !d.current_work_area_->completer().completionAvailable()))
1772                         enable = false;
1773                 break;
1774
1775         case LFUN_COMPLETION_CANCEL:
1776                 if (!d.current_work_area_
1777                         || (!d.current_work_area_->completer().popupVisible()
1778                         && !d.current_work_area_->completer().inlineVisible()))
1779                         enable = false;
1780                 break;
1781
1782         case LFUN_BUFFER_ZOOM_OUT:
1783                 enable = doc_buffer && lyxrc.zoom > 10;
1784                 break;
1785
1786         case LFUN_BUFFER_ZOOM_IN:
1787                 enable = doc_buffer;
1788                 break;
1789
1790         case LFUN_BUFFER_NEXT:
1791         case LFUN_BUFFER_PREVIOUS:
1792                 // FIXME: should we check is there is an previous or next buffer?
1793                 break;
1794         case LFUN_BUFFER_SWITCH:
1795                 // toggle on the current buffer, but do not toggle off
1796                 // the other ones (is that a good idea?)
1797                 if (doc_buffer
1798                         && to_utf8(cmd.argument()) == doc_buffer->absFileName())
1799                         flag.setOnOff(true);
1800                 break;
1801
1802         case LFUN_VC_REGISTER:
1803                 enable = doc_buffer && !doc_buffer->lyxvc().inUse();
1804                 break;
1805         case LFUN_VC_CHECK_IN:
1806                 enable = doc_buffer && doc_buffer->lyxvc().checkInEnabled();
1807                 break;
1808         case LFUN_VC_CHECK_OUT:
1809                 enable = doc_buffer && doc_buffer->lyxvc().checkOutEnabled();
1810                 break;
1811         case LFUN_VC_LOCKING_TOGGLE:
1812                 enable = doc_buffer && !doc_buffer->isReadonly()
1813                         && doc_buffer->lyxvc().lockingToggleEnabled();
1814                 flag.setOnOff(enable && doc_buffer->lyxvc().locking());
1815                 break;
1816         case LFUN_VC_REVERT:
1817                 enable = doc_buffer && doc_buffer->lyxvc().inUse() && !doc_buffer->isReadonly();
1818                 break;
1819         case LFUN_VC_UNDO_LAST:
1820                 enable = doc_buffer && doc_buffer->lyxvc().undoLastEnabled();
1821                 break;
1822         case LFUN_VC_REPO_UPDATE:
1823                 enable = doc_buffer && doc_buffer->lyxvc().repoUpdateEnabled();
1824                 break;
1825         case LFUN_VC_COMMAND: {
1826                 if (cmd.argument().empty())
1827                         enable = false;
1828                 if (!doc_buffer && contains(cmd.getArg(0), 'D'))
1829                         enable = false;
1830                 break;
1831         }
1832         case LFUN_VC_COMPARE:
1833                 enable = doc_buffer && doc_buffer->lyxvc().prepareFileRevisionEnabled();
1834                 break;
1835
1836         case LFUN_SERVER_GOTO_FILE_ROW:
1837                 break;
1838         case LFUN_FORWARD_SEARCH:
1839                 enable = !(lyxrc.forward_search_dvi.empty() && lyxrc.forward_search_pdf.empty());
1840                 break;
1841
1842         case LFUN_FILE_INSERT_PLAINTEXT:
1843         case LFUN_FILE_INSERT_PLAINTEXT_PARA:
1844                 enable = documentBufferView() && documentBufferView()->cursor().inTexted();
1845                 break;
1846
1847         default:
1848                 return false;
1849         }
1850
1851         if (!enable)
1852                 flag.setEnabled(false);
1853
1854         return true;
1855 }
1856
1857
1858 static FileName selectTemplateFile()
1859 {
1860         FileDialog dlg(qt_("Select template file"));
1861         dlg.setButton1(qt_("Documents|#o#O"), toqstr(lyxrc.document_path));
1862         dlg.setButton2(qt_("Templates|#T#t"), toqstr(lyxrc.template_path));
1863
1864         FileDialog::Result result = dlg.open(toqstr(lyxrc.template_path),
1865                                  QStringList(qt_("LyX Documents (*.lyx)")));
1866
1867         if (result.first == FileDialog::Later)
1868                 return FileName();
1869         if (result.second.isEmpty())
1870                 return FileName();
1871         return FileName(fromqstr(result.second));
1872 }
1873
1874
1875 Buffer * GuiView::loadDocument(FileName const & filename, bool tolastfiles)
1876 {
1877         setBusy(true);
1878
1879         Buffer * newBuffer = 0;
1880         try {
1881                 newBuffer = checkAndLoadLyXFile(filename);
1882         } catch (ExceptionMessage const & e) {
1883                 setBusy(false);
1884                 throw(e);
1885         }
1886         setBusy(false);
1887
1888         if (!newBuffer) {
1889                 message(_("Document not loaded."));
1890                 return 0;
1891         }
1892
1893         setBuffer(newBuffer);
1894         newBuffer->errors("Parse");
1895
1896         if (tolastfiles)
1897                 theSession().lastFiles().add(filename);
1898
1899         return newBuffer;
1900 }
1901
1902
1903 void GuiView::openDocument(string const & fname)
1904 {
1905         string initpath = lyxrc.document_path;
1906
1907         if (documentBufferView()) {
1908                 string const trypath = documentBufferView()->buffer().filePath();
1909                 // If directory is writeable, use this as default.
1910                 if (FileName(trypath).isDirWritable())
1911                         initpath = trypath;
1912         }
1913
1914         string filename;
1915
1916         if (fname.empty()) {
1917                 FileDialog dlg(qt_("Select document to open"), LFUN_FILE_OPEN);
1918                 dlg.setButton1(qt_("Documents|#o#O"), toqstr(lyxrc.document_path));
1919                 dlg.setButton2(qt_("Examples|#E#e"),
1920                                 toqstr(addPath(package().system_support().absFileName(), "examples")));
1921
1922                 QStringList filter(qt_("LyX Documents (*.lyx)"));
1923                 filter << qt_("LyX-1.3.x Documents (*.lyx13)")
1924                         << qt_("LyX-1.4.x Documents (*.lyx14)")
1925                         << qt_("LyX-1.5.x Documents (*.lyx15)")
1926                         << qt_("LyX-1.6.x Documents (*.lyx16)");
1927                 FileDialog::Result result =
1928                         dlg.open(toqstr(initpath), filter);
1929
1930                 if (result.first == FileDialog::Later)
1931                         return;
1932
1933                 filename = fromqstr(result.second);
1934
1935                 // check selected filename
1936                 if (filename.empty()) {
1937                         message(_("Canceled."));
1938                         return;
1939                 }
1940         } else
1941                 filename = fname;
1942
1943         // get absolute path of file and add ".lyx" to the filename if
1944         // necessary.
1945         FileName const fullname =
1946                         fileSearch(string(), filename, "lyx", support::may_not_exist);
1947         if (!fullname.empty())
1948                 filename = fullname.absFileName();
1949
1950         if (!fullname.onlyPath().isDirectory()) {
1951                 Alert::warning(_("Invalid filename"),
1952                                 bformat(_("The directory in the given path\n%1$s\ndoes not exist."),
1953                                 from_utf8(fullname.absFileName())));
1954                 return;
1955         }
1956
1957         // if the file doesn't exist and isn't already open (bug 6645),
1958         // let the user create one
1959         if (!fullname.exists() && !theBufferList().exists(fullname)) {
1960                 // the user specifically chose this name. Believe him.
1961                 Buffer * const b = newFile(filename, string(), true);
1962                 if (b)
1963                         setBuffer(b);
1964                 return;
1965         }
1966
1967         docstring const disp_fn = makeDisplayPath(filename);
1968         message(bformat(_("Opening document %1$s..."), disp_fn));
1969
1970         docstring str2;
1971         Buffer * buf = loadDocument(fullname);
1972         if (buf) {
1973                 str2 = bformat(_("Document %1$s opened."), disp_fn);
1974                 if (buf->lyxvc().inUse())
1975                         str2 += " " + from_utf8(buf->lyxvc().versionString()) +
1976                                 " " + _("Version control detected.");
1977         } else {
1978                 str2 = bformat(_("Could not open document %1$s"), disp_fn);
1979         }
1980         message(str2);
1981 }
1982
1983 // FIXME: clean that
1984 static bool import(GuiView * lv, FileName const & filename,
1985         string const & format, ErrorList & errorList)
1986 {
1987         FileName const lyxfile(support::changeExtension(filename.absFileName(), ".lyx"));
1988
1989         string loader_format;
1990         vector<string> loaders = theConverters().loaders();
1991         if (find(loaders.begin(), loaders.end(), format) == loaders.end()) {
1992                 vector<string>::const_iterator it = loaders.begin();
1993                 vector<string>::const_iterator en = loaders.end();
1994                 for (; it != en; ++it) {
1995                         if (!theConverters().isReachable(format, *it))
1996                                 continue;
1997
1998                         string const tofile =
1999                                 support::changeExtension(filename.absFileName(),
2000                                 formats.extension(*it));
2001                         if (!theConverters().convert(0, filename, FileName(tofile),
2002                                 filename, format, *it, errorList))
2003                                 return false;
2004                         loader_format = *it;
2005                         break;
2006                 }
2007                 if (loader_format.empty()) {
2008                         frontend::Alert::error(_("Couldn't import file"),
2009                                          bformat(_("No information for importing the format %1$s."),
2010                                          formats.prettyName(format)));
2011                         return false;
2012                 }
2013         } else
2014                 loader_format = format;
2015
2016         if (loader_format == "lyx") {
2017                 Buffer * buf = lv->loadDocument(lyxfile);
2018                 if (!buf)
2019                         return false;
2020         } else {
2021                 Buffer * const b = newFile(lyxfile.absFileName(), string(), true);
2022                 if (!b)
2023                         return false;
2024                 lv->setBuffer(b);
2025                 bool as_paragraphs = loader_format == "textparagraph";
2026                 string filename2 = (loader_format == format) ? filename.absFileName()
2027                         : support::changeExtension(filename.absFileName(),
2028                                           formats.extension(loader_format));
2029                 lv->currentBufferView()->insertPlaintextFile(FileName(filename2),
2030                         as_paragraphs);
2031                 guiApp->setCurrentView(lv);
2032                 lyx::dispatch(FuncRequest(LFUN_MARK_OFF));
2033         }
2034
2035         return true;
2036 }
2037
2038
2039 void GuiView::importDocument(string const & argument)
2040 {
2041         string format;
2042         string filename = split(argument, format, ' ');
2043
2044         LYXERR(Debug::INFO, format << " file: " << filename);
2045
2046         // need user interaction
2047         if (filename.empty()) {
2048                 string initpath = lyxrc.document_path;
2049                 if (documentBufferView()) {
2050                         string const trypath = documentBufferView()->buffer().filePath();
2051                         // If directory is writeable, use this as default.
2052                         if (FileName(trypath).isDirWritable())
2053                                 initpath = trypath;
2054                 }
2055
2056                 docstring const text = bformat(_("Select %1$s file to import"),
2057                         formats.prettyName(format));
2058
2059                 FileDialog dlg(toqstr(text), LFUN_BUFFER_IMPORT);
2060                 dlg.setButton1(qt_("Documents|#o#O"), toqstr(lyxrc.document_path));
2061                 dlg.setButton2(qt_("Examples|#E#e"),
2062                         toqstr(addPath(package().system_support().absFileName(), "examples")));
2063
2064                 docstring filter = formats.prettyName(format);
2065                 filter += " (*.{";
2066                 // FIXME UNICODE
2067                 filter += from_utf8(formats.extensions(format));
2068                 filter += "})";
2069
2070                 FileDialog::Result result =
2071                         dlg.open(toqstr(initpath), fileFilters(toqstr(filter)));
2072
2073                 if (result.first == FileDialog::Later)
2074                         return;
2075
2076                 filename = fromqstr(result.second);
2077
2078                 // check selected filename
2079                 if (filename.empty())
2080                         message(_("Canceled."));
2081         }
2082
2083         if (filename.empty())
2084                 return;
2085
2086         // get absolute path of file
2087         FileName const fullname(support::makeAbsPath(filename));
2088
2089         FileName const lyxfile(support::changeExtension(fullname.absFileName(), ".lyx"));
2090
2091         // Check if the document already is open
2092         Buffer * buf = theBufferList().getBuffer(lyxfile);
2093         if (buf) {
2094                 setBuffer(buf);
2095                 if (!closeBuffer()) {
2096                         message(_("Canceled."));
2097                         return;
2098                 }
2099         }
2100
2101         docstring const displaypath = makeDisplayPath(lyxfile.absFileName(), 30);
2102
2103         // if the file exists already, and we didn't do
2104         // -i lyx thefile.lyx, warn
2105         if (lyxfile.exists() && fullname != lyxfile) {
2106
2107                 docstring text = bformat(_("The document %1$s already exists.\n\n"
2108                         "Do you want to overwrite that document?"), displaypath);
2109                 int const ret = Alert::prompt(_("Overwrite document?"),
2110                         text, 0, 1, _("&Overwrite"), _("&Cancel"));
2111
2112                 if (ret == 1) {
2113                         message(_("Canceled."));
2114                         return;
2115                 }
2116         }
2117
2118         message(bformat(_("Importing %1$s..."), displaypath));
2119         ErrorList errorList;
2120         if (import(this, fullname, format, errorList))
2121                 message(_("imported."));
2122         else
2123                 message(_("file not imported!"));
2124
2125         // FIXME (Abdel 12/08/06): Is there a need to display the error list here?
2126 }
2127
2128
2129 void GuiView::newDocument(string const & filename, bool from_template)
2130 {
2131         FileName initpath(lyxrc.document_path);
2132         if (documentBufferView()) {
2133                 FileName const trypath(documentBufferView()->buffer().filePath());
2134                 // If directory is writeable, use this as default.
2135                 if (trypath.isDirWritable())
2136                         initpath = trypath;
2137         }
2138
2139         string templatefile;
2140         if (from_template) {
2141                 templatefile = selectTemplateFile().absFileName();
2142                 if (templatefile.empty())
2143                         return;
2144         }
2145
2146         Buffer * b;
2147         if (filename.empty())
2148                 b = newUnnamedFile(initpath, to_utf8(_("newfile")), templatefile);
2149         else
2150                 b = newFile(filename, templatefile, true);
2151
2152         if (b)
2153                 setBuffer(b);
2154
2155         // If no new document could be created, it is unsure
2156         // whether there is a valid BufferView.
2157         if (currentBufferView())
2158                 // Ensure the cursor is correctly positioned on screen.
2159                 currentBufferView()->showCursor();
2160 }
2161
2162
2163 void GuiView::insertLyXFile(docstring const & fname)
2164 {
2165         BufferView * bv = documentBufferView();
2166         if (!bv)
2167                 return;
2168
2169         // FIXME UNICODE
2170         FileName filename(to_utf8(fname));
2171         if (filename.empty()) {
2172                 // Launch a file browser
2173                 // FIXME UNICODE
2174                 string initpath = lyxrc.document_path;
2175                 string const trypath = bv->buffer().filePath();
2176                 // If directory is writeable, use this as default.
2177                 if (FileName(trypath).isDirWritable())
2178                         initpath = trypath;
2179
2180                 // FIXME UNICODE
2181                 FileDialog dlg(qt_("Select LyX document to insert"), LFUN_FILE_INSERT);
2182                 dlg.setButton1(qt_("Documents|#o#O"), toqstr(lyxrc.document_path));
2183                 dlg.setButton2(qt_("Examples|#E#e"),
2184                         toqstr(addPath(package().system_support().absFileName(),
2185                         "examples")));
2186
2187                 FileDialog::Result result = dlg.open(toqstr(initpath),
2188                                          QStringList(qt_("LyX Documents (*.lyx)")));
2189
2190                 if (result.first == FileDialog::Later)
2191                         return;
2192
2193                 // FIXME UNICODE
2194                 filename.set(fromqstr(result.second));
2195
2196                 // check selected filename
2197                 if (filename.empty()) {
2198                         // emit message signal.
2199                         message(_("Canceled."));
2200                         return;
2201                 }
2202         }
2203
2204         bv->insertLyXFile(filename);
2205         bv->buffer().errors("Parse");
2206 }
2207
2208
2209 bool GuiView::renameBuffer(Buffer & b, docstring const & newname)
2210 {
2211         FileName fname = b.fileName();
2212         FileName const oldname = fname;
2213
2214         if (!newname.empty()) {
2215                 // FIXME UNICODE
2216                 fname = support::makeAbsPath(to_utf8(newname), oldname.onlyPath().absFileName());
2217         } else {
2218                 // Switch to this Buffer.
2219                 setBuffer(&b);
2220
2221                 // No argument? Ask user through dialog.
2222                 // FIXME UNICODE
2223                 FileDialog dlg(qt_("Choose a filename to save document as"),
2224                                    LFUN_BUFFER_WRITE_AS);
2225                 dlg.setButton1(qt_("Documents|#o#O"), toqstr(lyxrc.document_path));
2226                 dlg.setButton2(qt_("Templates|#T#t"), toqstr(lyxrc.template_path));
2227
2228                 if (!isLyXFileName(fname.absFileName()))
2229                         fname.changeExtension(".lyx");
2230
2231                 FileDialog::Result result =
2232                         dlg.save(toqstr(fname.onlyPath().absFileName()),
2233                                    QStringList(qt_("LyX Documents (*.lyx)")),
2234                                          toqstr(fname.onlyFileName()));
2235
2236                 if (result.first == FileDialog::Later)
2237                         return false;
2238
2239                 fname.set(fromqstr(result.second));
2240
2241                 if (fname.empty())
2242                         return false;
2243
2244                 if (!isLyXFileName(fname.absFileName()))
2245                         fname.changeExtension(".lyx");
2246         }
2247
2248         // fname is now the new Buffer location.
2249
2250         // if there is already a Buffer open with this name, we do not want
2251         // to have another one. (the second test makes sure we're not just
2252         // trying to overwrite ourselves, which is fine.)
2253         if (theBufferList().exists(fname) && fname != oldname
2254                   && theBufferList().getBuffer(fname) != &b) {
2255                 docstring const text = 
2256                         bformat(_("The file\n%1$s\nis already open in your current session.\n"
2257                             "Please close it before attempting to overwrite it.\n"
2258                             "Do you want to choose a new filename?"),
2259                                 from_utf8(fname.absFileName()));
2260                 int const ret = Alert::prompt(_("Chosen File Already Open"),
2261                         text, 0, 1, _("&Rename"), _("&Cancel"));
2262                 switch (ret) {
2263                 case 0: return renameBuffer(b, docstring());
2264                 case 1: return false;
2265                 }
2266                 //return false;
2267         }
2268         
2269         if (FileName(fname).exists()) {
2270                 docstring const file = makeDisplayPath(fname.absFileName(), 30);
2271                 docstring const text = bformat(_("The document %1$s already "
2272                                            "exists.\n\nDo you want to "
2273                                            "overwrite that document?"),
2274                                          file);
2275                 int const ret = Alert::prompt(_("Overwrite document?"),
2276                         text, 0, 2, _("&Overwrite"), _("&Rename"), _("&Cancel"));
2277                 switch (ret) {
2278                 case 0: break;
2279                 case 1: return renameBuffer(b, docstring());
2280                 case 2: return false;
2281                 }
2282         }
2283
2284         bool const saved = saveBuffer(b, fname);
2285         if (saved)
2286                 b.reload(false);
2287         return saved;
2288 }
2289
2290
2291 struct PrettyNameComparator
2292 {
2293         bool operator()(Format const *first, Format const *second) const {
2294                 return compare_ascii_no_case(first->prettyname(), second->prettyname()) <= 0;
2295         }
2296 };
2297
2298
2299 bool GuiView::exportBufferAs(Buffer & b)
2300 {
2301         FileName fname = b.fileName();
2302
2303         FileDialog dlg(qt_("Choose a filename to export the document as"));
2304         dlg.setButton1(qt_("Documents|#o#O"), toqstr(lyxrc.document_path));
2305
2306         QStringList types;
2307         types << "Any supported format (*.*)";
2308         Formats::const_iterator it = formats.begin();
2309         vector<Format const *> export_formats;
2310         for (; it != formats.end(); ++it)
2311                 if (it->documentFormat() && it->inExportMenu())
2312                         export_formats.push_back(&(*it));
2313         PrettyNameComparator cmp;
2314         sort(export_formats.begin(), export_formats.end(), cmp);
2315         vector<Format const *>::const_iterator fit = export_formats.begin();
2316         for (; fit != export_formats.end(); ++fit)
2317                 types << toqstr((*fit)->prettyname() + " (*." + (*fit)->extension() + ")");
2318         QString filter;
2319         FileDialog::Result result =
2320                 dlg.save(toqstr(fname.onlyPath().absFileName()),
2321                          types,
2322                          toqstr(fname.onlyFileName()),
2323                          &filter);
2324         if (result.first != FileDialog::Chosen)
2325                 return false;
2326
2327         string s = fromqstr(filter);
2328         size_t pos = s.find(" (*.");
2329         LASSERT(pos != string::npos, /**/);
2330         string fmt_prettyname = s.substr(0, pos);
2331         string fmt_name;
2332         fname.set(fromqstr(result.second));
2333         if (fmt_prettyname == "Any supported format")
2334                 fmt_name = formats.getFormatFromExtension(fname.extension());
2335         else
2336                 fmt_name = formats.getFormatFromPrettyName(fmt_prettyname);
2337         LYXERR(Debug::FILES, "fmt_prettyname=" << fmt_prettyname
2338                << ", fmt_name=" << fmt_name << ", fname=" << fname.absFileName());
2339
2340         if (fmt_name.empty() || fname.empty())
2341                 return false;
2342
2343         // fname is now the new Buffer location.
2344         if (FileName(fname).exists()) {
2345                 docstring const file = makeDisplayPath(fname.absFileName(), 30);
2346                 docstring text = bformat(_("The document %1$s already "
2347                                            "exists.\n\nDo you want to "
2348                                            "overwrite that document?"),
2349                                          file);
2350                 int const ret = Alert::prompt(_("Overwrite document?"),
2351                         text, 0, 2, _("&Overwrite"), _("&Rename"), _("&Cancel"));
2352                 switch (ret) {
2353                 case 0: break;
2354                 case 1: return exportBufferAs(b);
2355                 case 2: return false;
2356                 }
2357         }
2358
2359         FuncRequest cmd(LFUN_BUFFER_EXPORT, fmt_name + " " + fname.absFileName());
2360         DispatchResult dr;
2361         dispatch(cmd, dr);
2362         return dr.dispatched();
2363 }
2364
2365
2366 bool GuiView::saveBuffer(Buffer & b) {
2367         return saveBuffer(b, FileName());
2368 }
2369
2370
2371 bool GuiView::saveBuffer(Buffer & b, FileName const & fn)
2372 {
2373         if (workArea(b) && workArea(b)->inDialogMode())
2374                 return true;
2375
2376         if (fn.empty() && b.isUnnamed())
2377                         return renameBuffer(b, docstring());
2378
2379         bool success;
2380         if (fn.empty())
2381                 success = b.save();
2382         else
2383                 success = b.saveAs(fn);
2384         
2385         if (success) {
2386                 theSession().lastFiles().add(b.fileName());
2387                 return true;
2388         }
2389
2390         // Switch to this Buffer.
2391         setBuffer(&b);
2392
2393         // FIXME: we don't tell the user *WHY* the save failed !!
2394         docstring const file = makeDisplayPath(b.absFileName(), 30);
2395         docstring text = bformat(_("The document %1$s could not be saved.\n\n"
2396                                    "Do you want to rename the document and "
2397                                    "try again?"), file);
2398         int const ret = Alert::prompt(_("Rename and save?"),
2399                 text, 0, 2, _("&Rename"), _("&Retry"), _("&Cancel"));
2400         switch (ret) {
2401         case 0:
2402                 if (!renameBuffer(b, docstring()))
2403                         return false;
2404                 break;
2405         case 1:
2406                 break;
2407         case 2:
2408                 return false;
2409         }
2410
2411         return saveBuffer(b);
2412 }
2413
2414
2415 bool GuiView::hideWorkArea(GuiWorkArea * wa)
2416 {
2417         return closeWorkArea(wa, false);
2418 }
2419
2420
2421 // We only want to close the buffer if it is not visible in other workareas
2422 // of the same view, nor in other views, and if this is not a child
2423 bool GuiView::closeWorkArea(GuiWorkArea * wa)
2424 {
2425         Buffer & buf = wa->bufferView().buffer();
2426
2427         bool last_wa = d.countWorkAreasOf(buf) == 1
2428                 && !inOtherView(buf) && !buf.parent();
2429
2430         bool close_buffer = last_wa;
2431
2432         if (last_wa) {
2433                 if (lyxrc.close_buffer_with_last_view == "yes")
2434                         ; // Nothing to do
2435                 else if (lyxrc.close_buffer_with_last_view == "no")
2436                         close_buffer = false;
2437                 else {
2438                         docstring file;
2439                         if (buf.isUnnamed())
2440                                 file = from_utf8(buf.fileName().onlyFileName());
2441                         else
2442                                 file = buf.fileName().displayName(30);
2443                         docstring const text = bformat(
2444                                 _("Last view on document %1$s is being closed.\n"
2445                                   "Would you like to close or hide the document?\n"
2446                                   "\n"
2447                                   "Hidden documents can be displayed back through\n"
2448                                   "the menu: View->Hidden->...\n"
2449                                   "\n"
2450                                   "To remove this question, set your preference in:\n"
2451                                   "  Tools->Preferences->Look&Feel->UserInterface\n"
2452                                 ), file);
2453                         int ret = Alert::prompt(_("Close or hide document?"),
2454                                 text, 0, 1, _("&Close"), _("&Hide"));
2455                         close_buffer = (ret == 0);
2456                 }
2457         }
2458
2459         return closeWorkArea(wa, close_buffer);
2460 }
2461
2462
2463 bool GuiView::closeBuffer()
2464 {
2465         GuiWorkArea * wa = currentMainWorkArea();
2466         setCurrentWorkArea(wa);
2467         Buffer & buf = wa->bufferView().buffer();
2468         return wa && closeWorkArea(wa, !buf.parent());
2469 }
2470
2471
2472 void GuiView::writeSession() const {
2473         GuiWorkArea const * active_wa = currentMainWorkArea();
2474         for (int i = 0; i < d.splitter_->count(); ++i) {
2475                 TabWorkArea * twa = d.tabWorkArea(i);
2476                 for (int j = 0; j < twa->count(); ++j) {
2477                         GuiWorkArea * wa = static_cast<GuiWorkArea *>(twa->widget(j));
2478                         Buffer & buf = wa->bufferView().buffer();
2479                         theSession().lastOpened().add(buf.fileName(), wa == active_wa);
2480                 }
2481         }
2482 }
2483
2484
2485 bool GuiView::closeBufferAll()
2486 {
2487         // Close the workareas in all other views
2488         QList<int> const ids = guiApp->viewIds();
2489         for (int i = 0; i != ids.size(); ++i) {
2490                 if (id_ != ids[i] && !guiApp->view(ids[i]).closeWorkAreaAll())
2491                         return false;
2492         }
2493
2494         // Close our own workareas
2495         if (!closeWorkAreaAll())
2496                 return false;
2497
2498         // Now close the hidden buffers. We prevent hidden buffers from being
2499         // dirty, so we can just close them.
2500         theBufferList().closeAll();
2501         return true;
2502 }
2503
2504
2505 bool GuiView::closeWorkAreaAll()
2506 {
2507         setCurrentWorkArea(currentMainWorkArea());
2508
2509         // We might be in a situation that there is still a tabWorkArea, but
2510         // there are no tabs anymore. This can happen when we get here after a
2511         // TabWorkArea::lastWorkAreaRemoved() signal. Therefore we count how
2512         // many TabWorkArea's have no documents anymore.
2513         int empty_twa = 0;
2514
2515         // We have to call count() each time, because it can happen that
2516         // more than one splitter will disappear in one iteration (bug 5998).
2517         for (; d.splitter_->count() > empty_twa; ) {
2518                 TabWorkArea * twa = d.tabWorkArea(empty_twa);
2519
2520                 if (twa->count() == 0)
2521                         ++empty_twa;
2522                 else {
2523                         setCurrentWorkArea(twa->currentWorkArea());
2524                         if (!closeTabWorkArea(twa))
2525                                 return false;
2526                 }
2527         }
2528         return true;
2529 }
2530
2531
2532 bool GuiView::closeWorkArea(GuiWorkArea * wa, bool close_buffer)
2533 {
2534         if (!wa)
2535                 return false;
2536
2537         Buffer & buf = wa->bufferView().buffer();
2538
2539         if (close_buffer && GuiViewPrivate::busyBuffers.contains(&buf)) {
2540                 Alert::warning(_("Close document"), 
2541                         _("Document could not be closed because it is being processed by LyX."));
2542                 return false;
2543         }
2544
2545         if (close_buffer)
2546                 return closeBuffer(buf);
2547         else {
2548                 if (!inMultiTabs(wa))
2549                         if (!saveBufferIfNeeded(buf, true))
2550                                 return false;
2551                 removeWorkArea(wa);
2552                 return true;
2553         }
2554 }
2555
2556
2557 bool GuiView::closeBuffer(Buffer & buf)
2558 {
2559         // If we are in a close_event all children will be closed in some time,
2560         // so no need to do it here. This will ensure that the children end up
2561         // in the session file in the correct order. If we close the master
2562         // buffer, we can close or release the child buffers here too.
2563         bool success = true;
2564         if (!closing_) {
2565                 ListOfBuffers clist = buf.getChildren();
2566                 ListOfBuffers::const_iterator it = clist.begin();
2567                 ListOfBuffers::const_iterator const bend = clist.end();
2568                 for (; it != bend; ++it) {
2569                         // If a child is dirty, do not close
2570                         // without user intervention
2571                         //FIXME: should we look in other tabworkareas?
2572                         Buffer * child_buf = *it;
2573                         GuiWorkArea * child_wa = workArea(*child_buf);
2574                         if (child_wa) {
2575                                 if (!closeWorkArea(child_wa, true)) {
2576                                         success = false;
2577                                         break;
2578                                 }
2579                         } else
2580                                 theBufferList().releaseChild(&buf, child_buf);
2581                 }
2582         }
2583         if (success) {
2584                 // goto bookmark to update bookmark pit.
2585                 //FIXME: we should update only the bookmarks related to this buffer!
2586                 LYXERR(Debug::DEBUG, "GuiView::closeBuffer()");
2587                 for (size_t i = 0; i < theSession().bookmarks().size(); ++i)
2588                         guiApp->gotoBookmark(i+1, false, false);
2589
2590                 if (saveBufferIfNeeded(buf, false)) {
2591                         buf.removeAutosaveFile();
2592                         theBufferList().release(&buf);
2593                         return true;
2594                 }
2595         }
2596         // open all children again to avoid a crash because of dangling
2597         // pointers (bug 6603)
2598         buf.updateBuffer();
2599         return false;
2600 }
2601
2602
2603 bool GuiView::closeTabWorkArea(TabWorkArea * twa)
2604 {
2605         while (twa == d.currentTabWorkArea()) {
2606                 twa->setCurrentIndex(twa->count()-1);
2607
2608                 GuiWorkArea * wa = twa->currentWorkArea();
2609                 Buffer & b = wa->bufferView().buffer();
2610
2611                 // We only want to close the buffer if the same buffer is not visible
2612                 // in another view, and if this is not a child and if we are closing
2613                 // a view (not a tabgroup).
2614                 bool const close_buffer =
2615                         !inOtherView(b) && !b.parent() && closing_;
2616
2617                 if (!closeWorkArea(wa, close_buffer))
2618                         return false;
2619         }
2620         return true;
2621 }
2622
2623
2624 bool GuiView::saveBufferIfNeeded(Buffer & buf, bool hiding)
2625 {
2626         if (buf.isClean() || buf.paragraphs().empty())
2627                 return true;
2628
2629         // Switch to this Buffer.
2630         setBuffer(&buf);
2631
2632         docstring file;
2633         // FIXME: Unicode?
2634         if (buf.isUnnamed())
2635                 file = from_utf8(buf.fileName().onlyFileName());
2636         else
2637                 file = buf.fileName().displayName(30);
2638
2639         // Bring this window to top before asking questions.
2640         raise();
2641         activateWindow();
2642
2643         int ret;
2644         if (hiding && buf.isUnnamed()) {
2645                 docstring const text = bformat(_("The document %1$s has not been "
2646                                                  "saved yet.\n\nDo you want to save "
2647                                                  "the document?"), file);
2648                 ret = Alert::prompt(_("Save new document?"),
2649                         text, 0, 1, _("&Save"), _("&Cancel"));
2650                 if (ret == 1)
2651                         ++ret;
2652         } else {
2653                 docstring const text = bformat(_("The document %1$s has unsaved changes."
2654                         "\n\nDo you want to save the document or discard the changes?"), file);
2655                 ret = Alert::prompt(_("Save changed document?"),
2656                         text, 0, 2, _("&Save"), _("&Discard"), _("&Cancel"));
2657         }
2658
2659         switch (ret) {
2660         case 0:
2661                 if (!saveBuffer(buf))
2662                         return false;
2663                 break;
2664         case 1:
2665                 // If we crash after this we could have no autosave file
2666                 // but I guess this is really improbable (Jug).
2667                 // Sometimes improbable things happen:
2668                 // - see bug http://www.lyx.org/trac/ticket/6587 (ps)
2669                 // buf.removeAutosaveFile();
2670                 if (hiding)
2671                         // revert all changes
2672                         reloadBuffer(buf);
2673                 buf.markClean();
2674                 break;
2675         case 2:
2676                 return false;
2677         }
2678         return true;
2679 }
2680
2681
2682 bool GuiView::inMultiTabs(GuiWorkArea * wa)
2683 {
2684         Buffer & buf = wa->bufferView().buffer();
2685
2686         for (int i = 0; i != d.splitter_->count(); ++i) {
2687                 GuiWorkArea * wa_ = d.tabWorkArea(i)->workArea(buf);
2688                 if (wa_ && wa_ != wa)
2689                         return true;
2690         }
2691         return inOtherView(buf);
2692 }
2693
2694
2695 bool GuiView::inOtherView(Buffer & buf)
2696 {
2697         QList<int> const ids = guiApp->viewIds();
2698
2699         for (int i = 0; i != ids.size(); ++i) {
2700                 if (id_ == ids[i])
2701                         continue;
2702
2703                 if (guiApp->view(ids[i]).workArea(buf))
2704                         return true;
2705         }
2706         return false;
2707 }
2708
2709
2710 void GuiView::gotoNextOrPreviousBuffer(NextOrPrevious np)
2711 {
2712         if (!documentBufferView())
2713                 return;
2714         
2715         if (TabWorkArea * twa = d.currentTabWorkArea()) {
2716                 Buffer * const curbuf = &documentBufferView()->buffer();
2717                 int nwa = twa->count();
2718                 for (int i = 0; i < nwa; ++i) {
2719                         if (&workArea(i)->bufferView().buffer() == curbuf) {
2720                                 int next_index;
2721                                 if (np == NEXTBUFFER)
2722                                         next_index = (i == nwa - 1 ? 0 : i + 1);
2723                                 else
2724                                         next_index = (i == 0 ? nwa - 1 : i - 1);
2725                                 setBuffer(&workArea(next_index)->bufferView().buffer());
2726                                 break;
2727                         }
2728                 }
2729         }
2730 }
2731
2732
2733 /// make sure the document is saved
2734 static bool ensureBufferClean(Buffer * buffer)
2735 {
2736         LASSERT(buffer, return false);
2737         if (buffer->isClean() && !buffer->isUnnamed())
2738                 return true;
2739
2740         docstring const file = buffer->fileName().displayName(30);
2741         docstring title;
2742         docstring text;
2743         if (!buffer->isUnnamed()) {
2744                 text = bformat(_("The document %1$s has unsaved "
2745                                                  "changes.\n\nDo you want to save "
2746                                                  "the document?"), file);
2747                 title = _("Save changed document?");
2748
2749         } else {
2750                 text = bformat(_("The document %1$s has not been "
2751                                                  "saved yet.\n\nDo you want to save "
2752                                                  "the document?"), file);
2753                 title = _("Save new document?");
2754         }
2755         int const ret = Alert::prompt(title, text, 0, 1, _("&Save"), _("&Cancel"));
2756
2757         if (ret == 0)
2758                 dispatch(FuncRequest(LFUN_BUFFER_WRITE));
2759
2760         return buffer->isClean() && !buffer->isUnnamed();
2761 }
2762
2763
2764 bool GuiView::reloadBuffer(Buffer & buf)
2765 {
2766         Buffer::ReadStatus status = buf.reload();
2767         return status == Buffer::ReadSuccess;
2768 }
2769
2770
2771 void GuiView::checkExternallyModifiedBuffers()
2772 {
2773         BufferList::iterator bit = theBufferList().begin();
2774         BufferList::iterator const bend = theBufferList().end();
2775         for (; bit != bend; ++bit) {
2776                 Buffer * buf = *bit;
2777                 if (buf->fileName().exists()
2778                         && buf->isExternallyModified(Buffer::checksum_method)) {
2779                         docstring text = bformat(_("Document \n%1$s\n has been externally modified."
2780                                         " Reload now? Any local changes will be lost."),
2781                                         from_utf8(buf->absFileName()));
2782                         int const ret = Alert::prompt(_("Reload externally changed document?"),
2783                                                 text, 0, 1, _("&Reload"), _("&Cancel"));
2784                         if (!ret)
2785                                 reloadBuffer(*buf);
2786                 }
2787         }
2788 }
2789
2790
2791 void GuiView::dispatchVC(FuncRequest const & cmd, DispatchResult & dr)
2792 {
2793         Buffer * buffer = documentBufferView()
2794                 ? &(documentBufferView()->buffer()) : 0;
2795
2796         switch (cmd.action()) {
2797         case LFUN_VC_REGISTER:
2798                 if (!buffer || !ensureBufferClean(buffer))
2799                         break;
2800                 if (!buffer->lyxvc().inUse()) {
2801                         if (buffer->lyxvc().registrer()) {
2802                                 reloadBuffer(*buffer);
2803                                 dr.suppressMessageUpdate();
2804                         }
2805                 }
2806                 break;
2807
2808         case LFUN_VC_CHECK_IN:
2809                 if (!buffer || !ensureBufferClean(buffer))
2810                         break;
2811                 if (buffer->lyxvc().inUse() && !buffer->isReadonly()) {
2812                         dr.setMessage(buffer->lyxvc().checkIn());
2813                         if (!dr.message().empty())
2814                                 reloadBuffer(*buffer);
2815                 }
2816                 break;
2817
2818         case LFUN_VC_CHECK_OUT:
2819                 if (!buffer || !ensureBufferClean(buffer))
2820                         break;
2821                 if (buffer->lyxvc().inUse()) {
2822                         dr.setMessage(buffer->lyxvc().checkOut());
2823                         reloadBuffer(*buffer);
2824                 }
2825                 break;
2826
2827         case LFUN_VC_LOCKING_TOGGLE:
2828                 LASSERT(buffer, return);
2829                 if (!ensureBufferClean(buffer) || buffer->isReadonly())
2830                         break;
2831                 if (buffer->lyxvc().inUse()) {
2832                         string res = buffer->lyxvc().lockingToggle();
2833                         if (res.empty()) {
2834                                 frontend::Alert::error(_("Revision control error."),
2835                                 _("Error when setting the locking property."));
2836                         } else {
2837                                 dr.setMessage(res);
2838                                 reloadBuffer(*buffer);
2839                         }
2840                 }
2841                 break;
2842
2843         case LFUN_VC_REVERT:
2844                 LASSERT(buffer, return);
2845                 if (buffer->lyxvc().revert()) {
2846                         reloadBuffer(*buffer);
2847                         dr.suppressMessageUpdate();
2848                 }
2849                 break;
2850
2851         case LFUN_VC_UNDO_LAST:
2852                 LASSERT(buffer, return);
2853                 buffer->lyxvc().undoLast();
2854                 reloadBuffer(*buffer);
2855                 dr.suppressMessageUpdate();
2856                 break;
2857
2858         case LFUN_VC_REPO_UPDATE:
2859                 LASSERT(buffer, return);
2860                 if (ensureBufferClean(buffer)) {
2861                         dr.setMessage(buffer->lyxvc().repoUpdate());
2862                         checkExternallyModifiedBuffers();
2863                 }
2864                 break;
2865
2866         case LFUN_VC_COMMAND: {
2867                 string flag = cmd.getArg(0);
2868                 if (buffer && contains(flag, 'R') && !ensureBufferClean(buffer))
2869                         break;
2870                 docstring message;
2871                 if (contains(flag, 'M')) {
2872                         if (!Alert::askForText(message, _("LyX VC: Log Message")))
2873                                 break;
2874                 }
2875                 string path = cmd.getArg(1);
2876                 if (contains(path, "$$p") && buffer)
2877                         path = subst(path, "$$p", buffer->filePath());
2878                 LYXERR(Debug::LYXVC, "Directory: " << path);
2879                 FileName pp(path);
2880                 if (!pp.isReadableDirectory()) {
2881                         lyxerr << _("Directory is not accessible.") << endl;
2882                         break;
2883                 }
2884                 support::PathChanger p(pp);
2885
2886                 string command = cmd.getArg(2);
2887                 if (command.empty())
2888                         break;
2889                 if (buffer) {
2890                         command = subst(command, "$$i", buffer->absFileName());
2891                         command = subst(command, "$$p", buffer->filePath());
2892                 }
2893                 command = subst(command, "$$m", to_utf8(message));
2894                 LYXERR(Debug::LYXVC, "Command: " << command);
2895                 Systemcall one;
2896                 one.startscript(Systemcall::Wait, command);
2897
2898                 if (!buffer)
2899                         break;
2900                 if (contains(flag, 'I'))
2901                         buffer->markDirty();
2902                 if (contains(flag, 'R'))
2903                         reloadBuffer(*buffer);
2904
2905                 break;
2906                 }
2907
2908         case LFUN_VC_COMPARE: {
2909
2910                 if (cmd.argument().empty()) {
2911                         lyx::dispatch(FuncRequest(LFUN_DIALOG_SHOW, "comparehistory"));
2912                         break;
2913                 }
2914
2915                 string rev1 = cmd.getArg(0);
2916                 string f1, f2;
2917
2918                 // f1
2919                 if (!buffer->lyxvc().prepareFileRevision(rev1, f1))
2920                         break;
2921
2922                 if (isStrInt(rev1) && convert<int>(rev1) <= 0) {
2923                         f2 = buffer->absFileName();
2924                 } else {
2925                         string rev2 = cmd.getArg(1);
2926                         if (rev2.empty())
2927                                 break;
2928                         // f2
2929                         if (!buffer->lyxvc().prepareFileRevision(rev2, f2))
2930                                 break;
2931                 }
2932
2933                 LYXERR(Debug::LYXVC, "Launching comparison for fetched revisions:\n" <<
2934                                         f1 << "\n"  << f2 << "\n" );
2935                 string par = "compare run " + quoteName(f1) + " " + quoteName(f2);
2936                 lyx::dispatch(FuncRequest(LFUN_DIALOG_SHOW, par));
2937                 break;
2938         }
2939
2940         default:
2941                 break;
2942         }
2943 }
2944
2945
2946 void GuiView::openChildDocument(string const & fname)
2947 {
2948         LASSERT(documentBufferView(), return);
2949         Buffer & buffer = documentBufferView()->buffer();
2950         FileName const filename = support::makeAbsPath(fname, buffer.filePath());
2951         documentBufferView()->saveBookmark(false);
2952         Buffer * child = 0;
2953         if (theBufferList().exists(filename)) {
2954                 child = theBufferList().getBuffer(filename);
2955                 setBuffer(child);
2956         } else {
2957                 message(bformat(_("Opening child document %1$s..."),
2958                         makeDisplayPath(filename.absFileName())));
2959                 child = loadDocument(filename, false);
2960         }
2961         // Set the parent name of the child document.
2962         // This makes insertion of citations and references in the child work,
2963         // when the target is in the parent or another child document.
2964         if (child)
2965                 child->setParent(&buffer);
2966 }
2967
2968
2969 bool GuiView::goToFileRow(string const & argument)
2970 {
2971         string file_name;
2972         int row;
2973         size_t i = argument.find_last_of(' ');
2974         if (i != string::npos) {
2975                 file_name = os::internal_path(trim(argument.substr(0, i)));
2976                 istringstream is(argument.substr(i + 1));
2977                 is >> row;
2978                 if (is.fail())
2979                         i = string::npos;
2980         }
2981         if (i == string::npos) {
2982                 LYXERR0("Wrong argument: " << argument);
2983                 return false;
2984         }
2985         Buffer * buf = 0;
2986         string const abstmp = package().temp_dir().absFileName();
2987         string const realtmp = package().temp_dir().realPath();
2988         // We have to use os::path_prefix_is() here, instead of
2989         // simply prefixIs(), because the file name comes from
2990         // an external application and may need case adjustment.
2991         if (os::path_prefix_is(file_name, abstmp, os::CASE_ADJUSTED)
2992                 || os::path_prefix_is(file_name, realtmp, os::CASE_ADJUSTED)) {
2993                 // Needed by inverse dvi search. If it is a file
2994                 // in tmpdir, call the apropriated function.
2995                 // If tmpdir is a symlink, we may have the real
2996                 // path passed back, so we correct for that.
2997                 if (!prefixIs(file_name, abstmp))
2998                         file_name = subst(file_name, realtmp, abstmp);
2999                 buf = theBufferList().getBufferFromTmp(file_name);
3000         } else {
3001                 // Must replace extension of the file to be .lyx
3002                 // and get full path
3003                 FileName const s = fileSearch(string(),
3004                                                   support::changeExtension(file_name, ".lyx"), "lyx");
3005                 // Either change buffer or load the file
3006                 if (theBufferList().exists(s))
3007                         buf = theBufferList().getBuffer(s);
3008                 else if (s.exists()) {
3009                         buf = loadDocument(s);
3010                         if (!buf)
3011                                 return false;
3012                 } else {
3013                         message(bformat(
3014                                         _("File does not exist: %1$s"),
3015                                         makeDisplayPath(file_name)));
3016                         return false;
3017                 }
3018         }
3019         if (!buf) {
3020                 message(bformat(
3021                         _("No buffer for file: %1$s."),
3022                         makeDisplayPath(file_name))
3023                 );
3024                 return false;
3025         }
3026         setBuffer(buf);
3027         documentBufferView()->setCursorFromRow(row);
3028         return true;
3029 }
3030
3031
3032 template<class T>
3033 Buffer::ExportStatus GuiView::GuiViewPrivate::runAndDestroy(const T& func, Buffer const * orig, Buffer * clone, string const & format)
3034 {
3035         Buffer::ExportStatus const status = func(format);
3036
3037         // the cloning operation will have produced a clone of the entire set of
3038         // documents, starting from the master. so we must delete those.
3039         Buffer * mbuf = const_cast<Buffer *>(clone->masterBuffer());
3040         delete mbuf;
3041         busyBuffers.remove(orig);
3042         return status;
3043 }
3044
3045
3046 Buffer::ExportStatus GuiView::GuiViewPrivate::compileAndDestroy(Buffer const * orig, Buffer * clone, string const & format)
3047 {
3048         Buffer::ExportStatus (Buffer::* mem_func)(std::string const &, bool) const = &Buffer::doExport;
3049         return runAndDestroy(lyx::bind(mem_func, clone, _1, true), orig, clone, format);
3050 }
3051
3052
3053 Buffer::ExportStatus GuiView::GuiViewPrivate::exportAndDestroy(Buffer const * orig, Buffer * clone, string const & format)
3054 {
3055         Buffer::ExportStatus (Buffer::* mem_func)(std::string const &, bool) const = &Buffer::doExport;
3056         return runAndDestroy(lyx::bind(mem_func, clone, _1, false), orig, clone, format);
3057 }
3058
3059
3060 Buffer::ExportStatus GuiView::GuiViewPrivate::previewAndDestroy(Buffer const * orig, Buffer * clone, string const & format)
3061 {
3062         Buffer::ExportStatus (Buffer::* mem_func)(std::string const &) const = &Buffer::preview;
3063         return runAndDestroy(lyx::bind(mem_func, clone, _1), orig, clone, format);
3064 }
3065
3066
3067 bool GuiView::GuiViewPrivate::asyncBufferProcessing(
3068                            string const & argument,
3069                            Buffer const * used_buffer,
3070                            docstring const & msg,
3071                            Buffer::ExportStatus (*asyncFunc)(Buffer const *, Buffer *, string const &),
3072                            Buffer::ExportStatus (Buffer::*syncFunc)(string const &, bool) const,
3073                            Buffer::ExportStatus (Buffer::*previewFunc)(string const &) const)
3074 {
3075         if (!used_buffer)
3076                 return false;
3077
3078         string format = argument;
3079         if (format.empty())
3080                 format = used_buffer->params().getDefaultOutputFormat();
3081         processing_format = format;
3082 #if EXPORT_in_THREAD
3083         if (!msg.empty()) {
3084                 progress_->clearMessages();
3085                 gv_->message(msg);
3086         }
3087         GuiViewPrivate::busyBuffers.insert(used_buffer);
3088         Buffer * cloned_buffer = used_buffer->cloneFromMaster();
3089         if (!cloned_buffer) {
3090                 Alert::error(_("Export Error"),
3091                              _("Error cloning the Buffer."));
3092                 return false;
3093         }
3094         QFuture<Buffer::ExportStatus> f = QtConcurrent::run(
3095                                 asyncFunc,
3096                                 used_buffer,
3097                                 cloned_buffer,
3098                                 format);
3099         setPreviewFuture(f);
3100         last_export_format = used_buffer->params().bufferFormat();
3101         (void) syncFunc;
3102         (void) previewFunc;
3103         // We are asynchronous, so we don't know here anything about the success
3104         return true;
3105 #else
3106         Buffer::ExportStatus status;
3107         if (syncFunc) {
3108                 // TODO check here if it breaks exporting with Qt < 4.4
3109                 status = (used_buffer->*syncFunc)(format, true);
3110         } else if (previewFunc) {
3111                 status = (used_buffer->*previewFunc)(format); 
3112         } else
3113                 return false;
3114         handleExportStatus(gv_, status, format);
3115         (void) asyncFunc;
3116         return (status == Buffer::ExportSuccess 
3117                         || status == Buffer::PreviewSuccess);
3118 #endif
3119 }
3120
3121 void GuiView::dispatchToBufferView(FuncRequest const & cmd, DispatchResult & dr)
3122 {
3123         BufferView * bv = currentBufferView();
3124         LASSERT(bv, /**/);
3125
3126         // Let the current BufferView dispatch its own actions.
3127         bv->dispatch(cmd, dr);
3128         if (dr.dispatched())
3129                 return;
3130
3131         // Try with the document BufferView dispatch if any.
3132         BufferView * doc_bv = documentBufferView();
3133         if (doc_bv && doc_bv != bv) {
3134                 doc_bv->dispatch(cmd, dr);
3135                 if (dr.dispatched())
3136                         return;
3137         }
3138
3139         // Then let the current Cursor dispatch its own actions.
3140         bv->cursor().dispatch(cmd);
3141
3142         // update completion. We do it here and not in
3143         // processKeySym to avoid another redraw just for a
3144         // changed inline completion
3145         if (cmd.origin() == FuncRequest::KEYBOARD) {
3146                 if (cmd.action() == LFUN_SELF_INSERT
3147                         || (cmd.action() == LFUN_ERT_INSERT && bv->cursor().inMathed()))
3148                         updateCompletion(bv->cursor(), true, true);
3149                 else if (cmd.action() == LFUN_CHAR_DELETE_BACKWARD)
3150                         updateCompletion(bv->cursor(), false, true);
3151                 else
3152                         updateCompletion(bv->cursor(), false, false);
3153         }
3154
3155         dr = bv->cursor().result();
3156 }
3157
3158
3159 void GuiView::dispatch(FuncRequest const & cmd, DispatchResult & dr)
3160 {
3161         BufferView * bv = currentBufferView();
3162         // By default we won't need any update.
3163         dr.screenUpdate(Update::None);
3164         // assume cmd will be dispatched
3165         dr.dispatched(true);
3166
3167         Buffer * doc_buffer = documentBufferView()
3168                 ? &(documentBufferView()->buffer()) : 0;
3169
3170         if (cmd.origin() == FuncRequest::TOC) {
3171                 GuiToc * toc = static_cast<GuiToc*>(findOrBuild("toc", false));
3172                 // FIXME: do we need to pass a DispatchResult object here?
3173                 toc->doDispatch(bv->cursor(), cmd);
3174                 return;
3175         }
3176
3177         string const argument = to_utf8(cmd.argument());
3178
3179         switch(cmd.action()) {
3180                 case LFUN_BUFFER_CHILD_OPEN:
3181                         openChildDocument(to_utf8(cmd.argument()));
3182                         break;
3183
3184                 case LFUN_BUFFER_IMPORT:
3185                         importDocument(to_utf8(cmd.argument()));
3186                         break;
3187
3188                 case LFUN_BUFFER_EXPORT: {
3189                         if (!doc_buffer)
3190                                 break;
3191                         // GCC only sees strfwd.h when building merged
3192                         if (::lyx::operator==(cmd.argument(), "custom")) {
3193                                 dispatch(FuncRequest(LFUN_DIALOG_SHOW, "sendto"), dr);
3194                                 break;
3195                         }
3196                         /* TODO/Review: Is it a problem to also export the children?
3197                                         See the update_unincluded flag */
3198                         d.asyncBufferProcessing(argument,
3199                                                 doc_buffer,
3200                                                 _("Exporting ..."),
3201                                                 &GuiViewPrivate::exportAndDestroy,
3202                                                 &Buffer::doExport,
3203                                                 0);
3204                         // TODO Inform user about success
3205                         break;
3206                 }
3207
3208                 case LFUN_BUFFER_EXPORT_AS:
3209                         LASSERT(doc_buffer, break);
3210                         exportBufferAs(*doc_buffer);
3211                         break;
3212
3213                 case LFUN_BUFFER_UPDATE: {
3214                         d.asyncBufferProcessing(argument,
3215                                                 doc_buffer,
3216                                                 _("Exporting ..."),
3217                                                 &GuiViewPrivate::compileAndDestroy,
3218                                                 &Buffer::doExport,
3219                                                 0);
3220                         break;
3221                 }
3222                 case LFUN_BUFFER_VIEW: {
3223                         d.asyncBufferProcessing(argument,
3224                                                 doc_buffer,
3225                                                 _("Previewing ..."),
3226                                                 &GuiViewPrivate::previewAndDestroy,
3227                                                 0,
3228                                                 &Buffer::preview);
3229                         break;
3230                 }
3231                 case LFUN_MASTER_BUFFER_UPDATE: {
3232                         d.asyncBufferProcessing(argument,
3233                                                 (doc_buffer ? doc_buffer->masterBuffer() : 0),
3234                                                 docstring(),
3235                                                 &GuiViewPrivate::compileAndDestroy,
3236                                                 &Buffer::doExport,
3237                                                 0);
3238                         break;
3239                 }
3240                 case LFUN_MASTER_BUFFER_VIEW: {
3241                         d.asyncBufferProcessing(argument,
3242                                                 (doc_buffer ? doc_buffer->masterBuffer() : 0),
3243                                                 docstring(),
3244                                                 &GuiViewPrivate::previewAndDestroy,
3245                                                 0, &Buffer::preview);
3246                         break;
3247                 }
3248                 case LFUN_BUFFER_SWITCH: {
3249                         string const file_name = to_utf8(cmd.argument());
3250                         if (!FileName::isAbsolute(file_name)) {
3251                                 dr.setError(true);
3252                                 dr.setMessage(_("Absolute filename expected."));
3253                                 break;
3254                         }
3255
3256                         Buffer * buffer = theBufferList().getBuffer(FileName(file_name));
3257                         if (!buffer) {
3258                                 dr.setError(true);
3259                                 dr.setMessage(_("Document not loaded"));
3260                                 break;
3261                         }
3262
3263                         // Do we open or switch to the buffer in this view ?
3264                         if (workArea(*buffer)
3265                                   || lyxrc.open_buffers_in_tabs || !documentBufferView()) {
3266                                 setBuffer(buffer);
3267                                 break;
3268                         }
3269
3270                         // Look for the buffer in other views
3271                         QList<int> const ids = guiApp->viewIds();
3272                         int i = 0;
3273                         for (; i != ids.size(); ++i) {
3274                                 GuiView & gv = guiApp->view(ids[i]);
3275                                 if (gv.workArea(*buffer)) {
3276                                         gv.activateWindow();
3277                                         gv.setBuffer(buffer);
3278                                         break;
3279                                 }
3280                         }
3281
3282                         // If necessary, open a new window as a last resort
3283                         if (i == ids.size()) {
3284                                 lyx::dispatch(FuncRequest(LFUN_WINDOW_NEW));
3285                                 lyx::dispatch(cmd);
3286                         }
3287                         break;
3288                 }
3289
3290                 case LFUN_BUFFER_NEXT:
3291                         gotoNextOrPreviousBuffer(NEXTBUFFER);
3292                         break;
3293
3294                 case LFUN_BUFFER_PREVIOUS:
3295                         gotoNextOrPreviousBuffer(PREVBUFFER);
3296                         break;
3297
3298                 case LFUN_COMMAND_EXECUTE: {
3299                         bool const show_it = cmd.argument() != "off";
3300                         // FIXME: this is a hack, "minibuffer" should not be
3301                         // hardcoded.
3302                         if (GuiToolbar * t = toolbar("minibuffer")) {
3303                                 t->setVisible(show_it);
3304                                 if (show_it && t->commandBuffer())
3305                                         t->commandBuffer()->setFocus();
3306                         }
3307                         break;
3308                 }
3309                 case LFUN_DROP_LAYOUTS_CHOICE:
3310                         d.layout_->showPopup();
3311                         break;
3312
3313                 case LFUN_MENU_OPEN:
3314                         if (QMenu * menu = guiApp->menus().menu(toqstr(cmd.argument()), *this))
3315                                 menu->exec(QCursor::pos());
3316                         break;
3317
3318                 case LFUN_FILE_INSERT:
3319                         insertLyXFile(cmd.argument());
3320                         break;
3321
3322                 case LFUN_FILE_INSERT_PLAINTEXT:
3323                 case LFUN_FILE_INSERT_PLAINTEXT_PARA: {
3324                         bool const as_paragraph = (cmd.action() == LFUN_FILE_INSERT_PLAINTEXT_PARA);
3325                         string const fname = to_utf8(cmd.argument());
3326                         if (!fname.empty() && !FileName::isAbsolute(fname)) {
3327                                 dr.setMessage(_("Absolute filename expected."));
3328                                 break;
3329                         }
3330                         
3331                         FileName filename(fname);
3332                         if (fname.empty()) {
3333                                 FileDialog dlg(qt_("Select file to insert"), (as_paragraph ?
3334                                         LFUN_FILE_INSERT_PLAINTEXT_PARA : LFUN_FILE_INSERT_PLAINTEXT));
3335
3336                                 FileDialog::Result result = dlg.open(toqstr(bv->buffer().filePath()),
3337                                         QStringList(qt_("All Files (*)")));
3338                                 
3339                                 if (result.first == FileDialog::Later || result.second.isEmpty()) {
3340                                         dr.setMessage(_("Canceled."));
3341                                         break;
3342                                 }
3343
3344                                 filename.set(fromqstr(result.second));
3345                         }
3346
3347                         if (bv) {
3348                                 FuncRequest const new_cmd(cmd, filename.absoluteFilePath());
3349                                 bv->dispatch(new_cmd, dr);
3350                         }
3351                         break;
3352                 }
3353
3354                 case LFUN_BUFFER_RELOAD: {
3355                         LASSERT(doc_buffer, break);
3356
3357                         int ret = 0;
3358                         if (!doc_buffer->isClean()) {
3359                                 docstring const file =
3360                                         makeDisplayPath(doc_buffer->absFileName(), 20);
3361                                 docstring text = bformat(_("Any changes will be lost. "
3362                                         "Are you sure you want to revert to the saved version "
3363                                         "of the document %1$s?"), file);
3364                                 ret = Alert::prompt(_("Revert to saved document?"),
3365                                         text, 1, 1, _("&Revert"), _("&Cancel"));
3366                         }
3367
3368                         if (ret == 0) {
3369                                 doc_buffer->markClean();
3370                                 reloadBuffer(*doc_buffer);
3371                                 dr.forceBufferUpdate();
3372                         }
3373                         break;
3374                 }
3375
3376                 case LFUN_BUFFER_WRITE:
3377                         LASSERT(doc_buffer, break);
3378                         saveBuffer(*doc_buffer);
3379                         break;
3380
3381                 case LFUN_BUFFER_WRITE_AS:
3382                         LASSERT(doc_buffer, break);
3383                         renameBuffer(*doc_buffer, cmd.argument());
3384                         break;
3385
3386                 case LFUN_BUFFER_WRITE_ALL: {
3387                         Buffer * first = theBufferList().first();
3388                         if (!first)
3389                                 break;
3390                         message(_("Saving all documents..."));
3391                         // We cannot use a for loop as the buffer list cycles.
3392                         Buffer * b = first;
3393                         do {
3394                                 if (!b->isClean()) {
3395                                         saveBuffer(*b);
3396                                         LYXERR(Debug::ACTION, "Saved " << b->absFileName());
3397                                 }
3398                                 b = theBufferList().next(b);
3399                         } while (b != first);
3400                         dr.setMessage(_("All documents saved."));
3401                         break;
3402                 }
3403
3404                 case LFUN_BUFFER_CLOSE:
3405                         closeBuffer();
3406                         break;
3407
3408                 case LFUN_BUFFER_CLOSE_ALL:
3409                         closeBufferAll();
3410                         break;
3411
3412                 case LFUN_TOOLBAR_TOGGLE: {
3413                         string const name = cmd.getArg(0);
3414                         if (GuiToolbar * t = toolbar(name))
3415                                 t->toggle();
3416                         break;
3417                 }
3418
3419                 case LFUN_DIALOG_UPDATE: {
3420                         string const name = to_utf8(cmd.argument());
3421                         if (name == "prefs" || name == "document")
3422                                 updateDialog(name, string());
3423                         else if (name == "paragraph")
3424                                 lyx::dispatch(FuncRequest(LFUN_PARAGRAPH_UPDATE));
3425                         else if (currentBufferView()) {
3426                                 Inset * inset = currentBufferView()->editedInset(name);
3427                                 // Can only update a dialog connected to an existing inset
3428                                 if (inset) {
3429                                         // FIXME: get rid of this indirection; GuiView ask the inset
3430                                         // if he is kind enough to update itself...
3431                                         FuncRequest fr(LFUN_INSET_DIALOG_UPDATE, cmd.argument());
3432                                         //FIXME: pass DispatchResult here?
3433                                         inset->dispatch(currentBufferView()->cursor(), fr);
3434                                 }
3435                         }
3436                         break;
3437                 }
3438
3439                 case LFUN_DIALOG_TOGGLE: {
3440                         FuncCode const func_code = isDialogVisible(cmd.getArg(0))
3441                                 ? LFUN_DIALOG_HIDE : LFUN_DIALOG_SHOW;
3442                         dispatch(FuncRequest(func_code, cmd.argument()), dr);
3443                         break;
3444                 }
3445
3446                 case LFUN_DIALOG_DISCONNECT_INSET:
3447                         disconnectDialog(to_utf8(cmd.argument()));
3448                         break;
3449
3450                 case LFUN_DIALOG_HIDE: {
3451                         guiApp->hideDialogs(to_utf8(cmd.argument()), 0);
3452                         break;
3453                 }
3454
3455                 case LFUN_DIALOG_SHOW: {
3456                         string const name = cmd.getArg(0);
3457                         string data = trim(to_utf8(cmd.argument()).substr(name.size()));
3458
3459                         if (name == "character") {
3460                                 data = freefont2string();
3461                                 if (!data.empty())
3462                                         showDialog("character", data);
3463                         } else if (name == "latexlog") {
3464                                 Buffer::LogType type;
3465                                 string const logfile = doc_buffer->logName(&type);
3466                                 switch (type) {
3467                                 case Buffer::latexlog:
3468                                         data = "latex ";
3469                                         break;
3470                                 case Buffer::buildlog:
3471                                         data = "literate ";
3472                                         break;
3473                                 }
3474                                 data += Lexer::quoteString(logfile);
3475                                 showDialog("log", data);
3476                         } else if (name == "vclog") {
3477                                 string const data = "vc " +
3478                                         Lexer::quoteString(doc_buffer->lyxvc().getLogFile());
3479                                 showDialog("log", data);
3480                         } else if (name == "symbols") {
3481                                 data = bv->cursor().getEncoding()->name();
3482                                 if (!data.empty())
3483                                         showDialog("symbols", data);
3484                         // bug 5274
3485                         } else if (name == "prefs" && isFullScreen()) {
3486                                 lfunUiToggle("fullscreen");
3487                                 showDialog("prefs", data);
3488                         } else
3489                                 showDialog(name, data);
3490                         break;
3491                 }
3492
3493                 case LFUN_MESSAGE:
3494                         dr.setMessage(cmd.argument());
3495                         break;
3496
3497                 case LFUN_UI_TOGGLE: {
3498                         string arg = cmd.getArg(0);
3499                         if (!lfunUiToggle(arg)) {
3500                                 docstring const msg = "ui-toggle " + _("%1$s unknown command!");
3501                                 dr.setMessage(bformat(msg, from_utf8(arg)));
3502                         }
3503                         // Make sure the keyboard focus stays in the work area.
3504                         setFocus();
3505                         break;
3506                 }
3507
3508                 case LFUN_VIEW_SPLIT: {
3509                         LASSERT(doc_buffer, break);
3510                         string const orientation = cmd.getArg(0);
3511                         d.splitter_->setOrientation(orientation == "vertical"
3512                                 ? Qt::Vertical : Qt::Horizontal);
3513                         TabWorkArea * twa = addTabWorkArea();
3514                         GuiWorkArea * wa = twa->addWorkArea(*doc_buffer, *this);
3515                         setCurrentWorkArea(wa);
3516                         break;
3517                 }
3518                 case LFUN_TAB_GROUP_CLOSE:
3519                         if (TabWorkArea * twa = d.currentTabWorkArea()) {
3520                                 closeTabWorkArea(twa);
3521                                 d.current_work_area_ = 0;
3522                                 twa = d.currentTabWorkArea();
3523                                 // Switch to the next GuiWorkArea in the found TabWorkArea.
3524                                 if (twa) {
3525                                         // Make sure the work area is up to date.
3526                                         setCurrentWorkArea(twa->currentWorkArea());
3527                                 } else {
3528                                         setCurrentWorkArea(0);
3529                                 }
3530                         }
3531                         break;
3532
3533                 case LFUN_VIEW_CLOSE:
3534                         if (TabWorkArea * twa = d.currentTabWorkArea()) {
3535                                 closeWorkArea(twa->currentWorkArea());
3536                                 d.current_work_area_ = 0;
3537                                 twa = d.currentTabWorkArea();
3538                                 // Switch to the next GuiWorkArea in the found TabWorkArea.
3539                                 if (twa) {
3540                                         // Make sure the work area is up to date.
3541                                         setCurrentWorkArea(twa->currentWorkArea());
3542                                 } else {
3543                                         setCurrentWorkArea(0);
3544                                 }
3545                         }
3546                         break;
3547
3548                 case LFUN_COMPLETION_INLINE:
3549                         if (d.current_work_area_)
3550                                 d.current_work_area_->completer().showInline();
3551                         break;
3552
3553                 case LFUN_COMPLETION_POPUP:
3554                         if (d.current_work_area_)
3555                                 d.current_work_area_->completer().showPopup();
3556                         break;
3557
3558
3559                 case LFUN_COMPLETION_COMPLETE:
3560                         if (d.current_work_area_)
3561                                 d.current_work_area_->completer().tab();
3562                         break;
3563
3564                 case LFUN_COMPLETION_CANCEL:
3565                         if (d.current_work_area_) {
3566                                 if (d.current_work_area_->completer().popupVisible())
3567                                         d.current_work_area_->completer().hidePopup();
3568                                 else
3569                                         d.current_work_area_->completer().hideInline();
3570                         }
3571                         break;
3572
3573                 case LFUN_COMPLETION_ACCEPT:
3574                         if (d.current_work_area_)
3575                                 d.current_work_area_->completer().activate();
3576                         break;
3577
3578                 case LFUN_BUFFER_ZOOM_IN:
3579                 case LFUN_BUFFER_ZOOM_OUT:
3580                         if (cmd.argument().empty()) {
3581                                 if (cmd.action() == LFUN_BUFFER_ZOOM_IN)
3582                                         lyxrc.zoom += 20;
3583                                 else
3584                                         lyxrc.zoom -= 20;
3585                         } else
3586                                 lyxrc.zoom += convert<int>(cmd.argument());
3587
3588                         if (lyxrc.zoom < 10)
3589                                 lyxrc.zoom = 10;
3590
3591                         // The global QPixmapCache is used in GuiPainter to cache text
3592                         // painting so we must reset it.
3593                         QPixmapCache::clear();
3594                         guiApp->fontLoader().update();
3595                         lyx::dispatch(FuncRequest(LFUN_SCREEN_FONT_UPDATE));
3596                         break;
3597
3598                 case LFUN_VC_REGISTER:
3599                 case LFUN_VC_CHECK_IN:
3600                 case LFUN_VC_CHECK_OUT:
3601                 case LFUN_VC_REPO_UPDATE:
3602                 case LFUN_VC_LOCKING_TOGGLE:
3603                 case LFUN_VC_REVERT:
3604                 case LFUN_VC_UNDO_LAST:
3605                 case LFUN_VC_COMMAND:
3606                 case LFUN_VC_COMPARE:
3607                         dispatchVC(cmd, dr);
3608                         break;
3609
3610                 case LFUN_SERVER_GOTO_FILE_ROW:
3611                         goToFileRow(to_utf8(cmd.argument()));
3612                         break;
3613
3614                 case LFUN_FORWARD_SEARCH: {
3615                         Buffer const * doc_master = doc_buffer->masterBuffer();
3616                         FileName const path(doc_master->temppath());
3617                         string const texname = doc_master->isChild(doc_buffer)
3618                                 ? DocFileName(changeExtension(
3619                                         doc_buffer->absFileName(),
3620                                                 "tex")).mangledFileName()
3621                                 : doc_buffer->latexName();
3622                         string const fulltexname = 
3623                                 support::makeAbsPath(texname, doc_master->temppath()).absFileName();
3624                         string const mastername =
3625                                 removeExtension(doc_master->latexName());
3626                         FileName const dviname(addName(path.absFileName(),
3627                                         addExtension(mastername, "dvi")));
3628                         FileName const pdfname(addName(path.absFileName(),
3629                                         addExtension(mastername, "pdf")));
3630                         bool const have_dvi = dviname.exists();
3631                         bool const have_pdf = pdfname.exists();
3632                         if (!have_dvi && !have_pdf) {
3633                                 dr.setMessage(_("Please, preview the document first."));
3634                                 break;
3635                         }
3636                         string outname = dviname.onlyFileName();
3637                         string command = lyxrc.forward_search_dvi;
3638                         if (!have_dvi || (have_pdf &&
3639                             pdfname.lastModified() > dviname.lastModified())) {
3640                                 outname = pdfname.onlyFileName();
3641                                 command = lyxrc.forward_search_pdf;
3642                         }
3643
3644                         DocIterator tmpcur = bv->cursor();
3645                         // Leave math first
3646                         while (tmpcur.inMathed())
3647                                 tmpcur.pop_back();
3648                         int row = tmpcur.inMathed() ? 0 : doc_buffer->texrow().getRowFromIdPos(
3649                                                                 tmpcur.paragraph().id(), tmpcur.pos());
3650                         LYXERR(Debug::ACTION, "Forward search: row:" << row
3651                                 << " id:" << tmpcur.paragraph().id());
3652                         if (!row || command.empty()) {
3653                                 dr.setMessage(_("Couldn't proceed."));
3654                                 break;
3655                         }
3656                         string texrow = convert<string>(row);
3657
3658                         command = subst(command, "$$n", texrow);
3659                         command = subst(command, "$$f", fulltexname);
3660                         command = subst(command, "$$t", texname);
3661                         command = subst(command, "$$o", outname);
3662
3663                         PathChanger p(path);
3664                         Systemcall one;
3665                         one.startscript(Systemcall::DontWait, command);
3666                         break;
3667                 }
3668                 default:
3669                         // The LFUN must be for one of BufferView, Buffer or Cursor;
3670                         // let's try that:
3671                         dispatchToBufferView(cmd, dr);
3672                         break;
3673         }
3674
3675         // Part of automatic menu appearance feature.
3676         if (isFullScreen()) {
3677                 if (menuBar()->isVisible() && lyxrc.full_screen_menubar)
3678                         menuBar()->hide();
3679                 if (statusBar()->isVisible())
3680                         statusBar()->hide();
3681         }
3682 }
3683
3684
3685 bool GuiView::lfunUiToggle(string const & ui_component)
3686 {
3687         if (ui_component == "scrollbar") {
3688                 // hide() is of no help
3689                 if (d.current_work_area_->verticalScrollBarPolicy() ==
3690                         Qt::ScrollBarAlwaysOff)
3691
3692                         d.current_work_area_->setVerticalScrollBarPolicy(
3693                                 Qt::ScrollBarAsNeeded);
3694                 else
3695                         d.current_work_area_->setVerticalScrollBarPolicy(
3696                                 Qt::ScrollBarAlwaysOff);
3697         } else if (ui_component == "statusbar") {
3698                 statusBar()->setVisible(!statusBar()->isVisible());
3699         } else if (ui_component == "menubar") {
3700                 menuBar()->setVisible(!menuBar()->isVisible());
3701         } else
3702         if (ui_component == "frame") {
3703                 int l, t, r, b;
3704                 getContentsMargins(&l, &t, &r, &b);
3705                 //are the frames in default state?
3706                 d.current_work_area_->setFrameStyle(QFrame::NoFrame);
3707                 if (l == 0) {
3708                         setContentsMargins(-2, -2, -2, -2);
3709                 } else {
3710                         setContentsMargins(0, 0, 0, 0);
3711                 }
3712         } else
3713         if (ui_component == "fullscreen") {
3714                 toggleFullScreen();
3715         } else
3716                 return false;
3717         return true;
3718 }
3719
3720
3721 void GuiView::toggleFullScreen()
3722 {
3723         if (isFullScreen()) {
3724                 for (int i = 0; i != d.splitter_->count(); ++i)
3725                         d.tabWorkArea(i)->setFullScreen(false);
3726                 setContentsMargins(0, 0, 0, 0);
3727                 setWindowState(windowState() ^ Qt::WindowFullScreen);
3728                 restoreLayout();
3729                 menuBar()->show();
3730                 statusBar()->show();
3731         } else {
3732                 // bug 5274
3733                 hideDialogs("prefs", 0);
3734                 for (int i = 0; i != d.splitter_->count(); ++i)
3735                         d.tabWorkArea(i)->setFullScreen(true);
3736                 setContentsMargins(-2, -2, -2, -2);
3737                 saveLayout();
3738                 setWindowState(windowState() ^ Qt::WindowFullScreen);
3739                 statusBar()->hide();
3740                 if (lyxrc.full_screen_menubar)
3741                         menuBar()->hide();
3742                 if (lyxrc.full_screen_toolbars) {
3743                         ToolbarMap::iterator end = d.toolbars_.end();
3744                         for (ToolbarMap::iterator it = d.toolbars_.begin(); it != end; ++it)
3745                                 it->second->hide();
3746                 }
3747         }
3748
3749         // give dialogs like the TOC a chance to adapt
3750         updateDialogs();
3751 }
3752
3753
3754 Buffer const * GuiView::updateInset(Inset const * inset)
3755 {
3756         if (!inset)
3757                 return 0;
3758
3759         Buffer const * inset_buffer = &(inset->buffer());
3760
3761         for (int i = 0; i != d.splitter_->count(); ++i) {
3762                 GuiWorkArea * wa = d.tabWorkArea(i)->currentWorkArea();
3763                 if (!wa)
3764                         continue;
3765                 Buffer const * buffer = &(wa->bufferView().buffer());
3766                 if (inset_buffer == buffer)
3767                         wa->scheduleRedraw();
3768         }
3769         return inset_buffer;
3770 }
3771
3772
3773 void GuiView::restartCursor()
3774 {
3775         /* When we move around, or type, it's nice to be able to see
3776          * the cursor immediately after the keypress.
3777          */
3778         if (d.current_work_area_)
3779                 d.current_work_area_->startBlinkingCursor();
3780
3781         // Take this occasion to update the other GUI elements.
3782         updateDialogs();
3783         updateStatusBar();
3784 }
3785
3786
3787 void GuiView::updateCompletion(Cursor & cur, bool start, bool keep)
3788 {
3789         if (d.current_work_area_)
3790                 d.current_work_area_->completer().updateVisibility(cur, start, keep);
3791 }
3792
3793 namespace {
3794
3795 // This list should be kept in sync with the list of insets in
3796 // src/insets/Inset.cpp.  I.e., if a dialog goes with an inset, the
3797 // dialog should have the same name as the inset.
3798 // Changes should be also recorded in LFUN_DIALOG_SHOW doxygen
3799 // docs in LyXAction.cpp.
3800
3801 char const * const dialognames[] = {
3802
3803 "aboutlyx", "bibitem", "bibtex", "box", "branch", "changes", "character",
3804 "citation", "compare", "comparehistory", "document", "errorlist", "ert",
3805 "external", "file", "findreplace", "findreplaceadv", "float", "graphics",
3806 "href", "include", "index", "index_print", "info", "listings", "label", "line",
3807 "log", "mathdelimiter", "mathmatrix", "mathspace", "nomenclature",
3808 "nomencl_print", "note", "paragraph", "phantom", "prefs", "print", "ref",
3809 "sendto", "space", "spellchecker", "symbols", "tabular", "tabularcreate",
3810 "thesaurus", "texinfo", "toc", "view-source", "vspace", "wrap", "progress"};
3811
3812 char const * const * const end_dialognames =
3813         dialognames + (sizeof(dialognames) / sizeof(char *));
3814
3815 class cmpCStr {
3816 public:
3817         cmpCStr(char const * name) : name_(name) {}
3818         bool operator()(char const * other) {
3819                 return strcmp(other, name_) == 0;
3820         }
3821 private:
3822         char const * name_;
3823 };
3824
3825
3826 bool isValidName(string const & name)
3827 {
3828         return find_if(dialognames, end_dialognames,
3829                                 cmpCStr(name.c_str())) != end_dialognames;
3830 }
3831
3832 } // namespace anon
3833
3834
3835 void GuiView::resetDialogs()
3836 {
3837         // Make sure that no LFUN uses any GuiView.
3838         guiApp->setCurrentView(0);
3839         saveLayout();
3840         saveUISettings();
3841         menuBar()->clear();
3842         constructToolbars();
3843         guiApp->menus().fillMenuBar(menuBar(), this, false);
3844         d.layout_->updateContents(true);
3845         // Now update controls with current buffer.
3846         guiApp->setCurrentView(this);
3847         restoreLayout();
3848         restartCursor();
3849 }
3850
3851
3852 Dialog * GuiView::findOrBuild(string const & name, bool hide_it)
3853 {
3854         if (!isValidName(name))
3855                 return 0;
3856
3857         map<string, DialogPtr>::iterator it = d.dialogs_.find(name);
3858
3859         if (it != d.dialogs_.end()) {
3860                 if (hide_it)
3861                         it->second->hideView();
3862                 return it->second.get();
3863         }
3864
3865         Dialog * dialog = build(name);
3866         d.dialogs_[name].reset(dialog);
3867         if (lyxrc.allow_geometry_session)
3868                 dialog->restoreSession();
3869         if (hide_it)
3870                 dialog->hideView();
3871         return dialog;
3872 }
3873
3874
3875 void GuiView::showDialog(string const & name, string const & data,
3876         Inset * inset)
3877 {
3878         triggerShowDialog(toqstr(name), toqstr(data), inset);
3879 }
3880
3881
3882 void GuiView::doShowDialog(QString const & qname, QString const & qdata,
3883         Inset * inset)
3884 {
3885         if (d.in_show_)
3886                 return;
3887
3888         const string name = fromqstr(qname);
3889         const string data = fromqstr(qdata);
3890
3891         d.in_show_ = true;
3892         try {
3893                 Dialog * dialog = findOrBuild(name, false);
3894                 if (dialog) {
3895                         bool const visible = dialog->isVisibleView();
3896                         dialog->showData(data);
3897                         if (inset && currentBufferView())
3898                                 currentBufferView()->editInset(name, inset);
3899                         // We only set the focus to the new dialog if it was not yet
3900                         // visible in order not to change the existing previous behaviour
3901                         if (visible) {
3902                                 // activateWindow is needed for floating dockviews
3903                                 dialog->asQWidget()->raise();
3904                                 dialog->asQWidget()->activateWindow();
3905                                 dialog->asQWidget()->setFocus();
3906                         }
3907                 }
3908         }
3909         catch (ExceptionMessage const & ex) {
3910                 d.in_show_ = false;
3911                 throw ex;
3912         }
3913         d.in_show_ = false;
3914 }
3915
3916
3917 bool GuiView::isDialogVisible(string const & name) const
3918 {
3919         map<string, DialogPtr>::const_iterator it = d.dialogs_.find(name);
3920         if (it == d.dialogs_.end())
3921                 return false;
3922         return it->second.get()->isVisibleView() && !it->second.get()->isClosing();
3923 }
3924
3925
3926 void GuiView::hideDialog(string const & name, Inset * inset)
3927 {
3928         map<string, DialogPtr>::const_iterator it = d.dialogs_.find(name);
3929         if (it == d.dialogs_.end())
3930                 return;
3931
3932         if (inset) {
3933                 if (!currentBufferView())
3934                         return;
3935                 if (inset != currentBufferView()->editedInset(name))
3936                         return;
3937         }
3938
3939         Dialog * const dialog = it->second.get();
3940         if (dialog->isVisibleView())
3941                 dialog->hideView();
3942         if (currentBufferView())
3943                 currentBufferView()->editInset(name, 0);
3944 }
3945
3946
3947 void GuiView::disconnectDialog(string const & name)
3948 {
3949         if (!isValidName(name))
3950                 return;
3951         if (currentBufferView())
3952                 currentBufferView()->editInset(name, 0);
3953 }
3954
3955
3956 void GuiView::hideAll() const
3957 {
3958         map<string, DialogPtr>::const_iterator it  = d.dialogs_.begin();
3959         map<string, DialogPtr>::const_iterator end = d.dialogs_.end();
3960
3961         for(; it != end; ++it)
3962                 it->second->hideView();
3963 }
3964
3965
3966 void GuiView::updateDialogs()
3967 {
3968         map<string, DialogPtr>::const_iterator it  = d.dialogs_.begin();
3969         map<string, DialogPtr>::const_iterator end = d.dialogs_.end();
3970
3971         for(; it != end; ++it) {
3972                 Dialog * dialog = it->second.get();
3973                 if (dialog) {
3974                         if (dialog->needBufferOpen() && !documentBufferView())
3975                                 hideDialog(fromqstr(dialog->name()), 0);
3976                         else if (dialog->isVisibleView())
3977                                 dialog->checkStatus();
3978                 }
3979         }
3980         updateToolbars();
3981         updateLayoutList();
3982 }
3983
3984 Dialog * createDialog(GuiView & lv, string const & name);
3985
3986 // will be replaced by a proper factory...
3987 Dialog * createGuiAbout(GuiView & lv);
3988 Dialog * createGuiBibtex(GuiView & lv);
3989 Dialog * createGuiChanges(GuiView & lv);
3990 Dialog * createGuiCharacter(GuiView & lv);
3991 Dialog * createGuiCitation(GuiView & lv);
3992 Dialog * createGuiCompare(GuiView & lv);
3993 Dialog * createGuiCompareHistory(GuiView & lv);
3994 Dialog * createGuiDelimiter(GuiView & lv);
3995 Dialog * createGuiDocument(GuiView & lv);
3996 Dialog * createGuiErrorList(GuiView & lv);
3997 Dialog * createGuiExternal(GuiView & lv);
3998 Dialog * createGuiGraphics(GuiView & lv);
3999 Dialog * createGuiInclude(GuiView & lv);
4000 Dialog * createGuiIndex(GuiView & lv);
4001 Dialog * createGuiListings(GuiView & lv);
4002 Dialog * createGuiLog(GuiView & lv);
4003 Dialog * createGuiMathMatrix(GuiView & lv);
4004 Dialog * createGuiNote(GuiView & lv);
4005 Dialog * createGuiParagraph(GuiView & lv);
4006 Dialog * createGuiPhantom(GuiView & lv);
4007 Dialog * createGuiPreferences(GuiView & lv);
4008 Dialog * createGuiPrint(GuiView & lv);
4009 Dialog * createGuiPrintindex(GuiView & lv);
4010 Dialog * createGuiRef(GuiView & lv);
4011 Dialog * createGuiSearch(GuiView & lv);
4012 Dialog * createGuiSearchAdv(GuiView & lv);
4013 Dialog * createGuiSendTo(GuiView & lv);
4014 Dialog * createGuiShowFile(GuiView & lv);
4015 Dialog * createGuiSpellchecker(GuiView & lv);
4016 Dialog * createGuiSymbols(GuiView & lv);
4017 Dialog * createGuiTabularCreate(GuiView & lv);
4018 Dialog * createGuiTexInfo(GuiView & lv);
4019 Dialog * createGuiToc(GuiView & lv);
4020 Dialog * createGuiThesaurus(GuiView & lv);
4021 Dialog * createGuiViewSource(GuiView & lv);
4022 Dialog * createGuiWrap(GuiView & lv);
4023 Dialog * createGuiProgressView(GuiView & lv);
4024
4025
4026
4027 Dialog * GuiView::build(string const & name)
4028 {
4029         LASSERT(isValidName(name), return 0);
4030
4031         Dialog * dialog = createDialog(*this, name);
4032         if (dialog)
4033                 return dialog;
4034
4035         if (name == "aboutlyx")
4036                 return createGuiAbout(*this);
4037         if (name == "bibtex")
4038                 return createGuiBibtex(*this);
4039         if (name == "changes")
4040                 return createGuiChanges(*this);
4041         if (name == "character")
4042                 return createGuiCharacter(*this);
4043         if (name == "citation")
4044                 return createGuiCitation(*this);
4045         if (name == "compare")
4046                 return createGuiCompare(*this);
4047         if (name == "comparehistory")
4048                 return createGuiCompareHistory(*this);
4049         if (name == "document")
4050                 return createGuiDocument(*this);
4051         if (name == "errorlist")
4052                 return createGuiErrorList(*this);
4053         if (name == "external")
4054                 return createGuiExternal(*this);
4055         if (name == "file")
4056                 return createGuiShowFile(*this);
4057         if (name == "findreplace")
4058                 return createGuiSearch(*this);
4059         if (name == "findreplaceadv")
4060                 return createGuiSearchAdv(*this);
4061         if (name == "graphics")
4062                 return createGuiGraphics(*this);
4063         if (name == "include")
4064                 return createGuiInclude(*this);
4065         if (name == "index")
4066                 return createGuiIndex(*this);
4067         if (name == "index_print")
4068                 return createGuiPrintindex(*this);
4069         if (name == "listings")
4070                 return createGuiListings(*this);
4071         if (name == "log")
4072                 return createGuiLog(*this);
4073         if (name == "mathdelimiter")
4074                 return createGuiDelimiter(*this);
4075         if (name == "mathmatrix")
4076                 return createGuiMathMatrix(*this);
4077         if (name == "note")
4078                 return createGuiNote(*this);
4079         if (name == "paragraph")
4080                 return createGuiParagraph(*this);
4081         if (name == "phantom")
4082                 return createGuiPhantom(*this);
4083         if (name == "prefs")
4084                 return createGuiPreferences(*this);
4085         if (name == "print")
4086                 return createGuiPrint(*this);
4087         if (name == "ref")
4088                 return createGuiRef(*this);
4089         if (name == "sendto")
4090                 return createGuiSendTo(*this);
4091         if (name == "spellchecker")
4092                 return createGuiSpellchecker(*this);
4093         if (name == "symbols")
4094                 return createGuiSymbols(*this);
4095         if (name == "tabularcreate")
4096                 return createGuiTabularCreate(*this);
4097         if (name == "texinfo")
4098                 return createGuiTexInfo(*this);
4099         if (name == "thesaurus")
4100                 return createGuiThesaurus(*this);
4101         if (name == "toc")
4102                 return createGuiToc(*this);
4103         if (name == "view-source")
4104                 return createGuiViewSource(*this);
4105         if (name == "wrap")
4106                 return createGuiWrap(*this);
4107         if (name == "progress")
4108                 return createGuiProgressView(*this);
4109
4110         return 0;
4111 }
4112
4113
4114 } // namespace frontend
4115 } // namespace lyx
4116
4117 #include "moc_GuiView.cpp"