]> git.lyx.org Git - lyx.git/blob - src/frontends/qt4/GuiView.cpp
854c702586ef08c95938e5df082c29709876a6db
[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 "FileDialog.h"
20 #include "FontLoader.h"
21 #include "GuiApplication.h"
22 #include "GuiCommandBuffer.h"
23 #include "GuiCompleter.h"
24 #include "GuiWorkArea.h"
25 #include "GuiKeySymbol.h"
26 #include "GuiToc.h"
27 #include "GuiToolbar.h"
28 #include "LayoutBox.h"
29 #include "Menus.h"
30 #include "TocModel.h"
31
32 #include "qt_helpers.h"
33
34 #include "frontends/alert.h"
35
36 #include "buffer_funcs.h"
37 #include "Buffer.h"
38 #include "BufferList.h"
39 #include "BufferParams.h"
40 #include "BufferView.h"
41 #include "Converter.h"
42 #include "Cursor.h"
43 #include "CutAndPaste.h"
44 #include "Encoding.h"
45 #include "ErrorList.h"
46 #include "Format.h"
47 #include "FuncStatus.h"
48 #include "FuncRequest.h"
49 #include "Intl.h"
50 #include "Layout.h"
51 #include "Lexer.h"
52 #include "LyXFunc.h"
53 #include "LyX.h"
54 #include "LyXRC.h"
55 #include "LyXVC.h"
56 #include "Paragraph.h"
57 #include "SpellChecker.h"
58 #include "TextClass.h"
59 #include "Text.h"
60 #include "Toolbars.h"
61 #include "version.h"
62
63 #include "support/convert.h"
64 #include "support/debug.h"
65 #include "support/ExceptionMessage.h"
66 #include "support/FileName.h"
67 #include "support/filetools.h"
68 #include "support/gettext.h"
69 #include "support/ForkedCalls.h"
70 #include "support/lassert.h"
71 #include "support/lstrings.h"
72 #include "support/os.h"
73 #include "support/Package.h"
74 #include "support/Timeout.h"
75
76 #include <QAction>
77 #include <QApplication>
78 #include <QCloseEvent>
79 #include <QDebug>
80 #include <QDesktopWidget>
81 #include <QDragEnterEvent>
82 #include <QDropEvent>
83 #include <QList>
84 #include <QMenu>
85 #include <QMenuBar>
86 #include <QPainter>
87 #include <QPixmap>
88 #include <QPixmapCache>
89 #include <QPoint>
90 #include <QPushButton>
91 #include <QSettings>
92 #include <QShowEvent>
93 #include <QSplitter>
94 #include <QStackedWidget>
95 #include <QStatusBar>
96 #include <QTimer>
97 #include <QToolBar>
98 #include <QUrl>
99 #include <QScrollBar>
100
101 #include <boost/bind.hpp>
102
103 #ifdef HAVE_SYS_TIME_H
104 # include <sys/time.h>
105 #endif
106 #ifdef HAVE_UNISTD_H
107 # include <unistd.h>
108 #endif
109
110 using namespace std;
111 using namespace lyx::support;
112
113 namespace lyx {
114 namespace frontend {
115
116 namespace {
117
118 class BackgroundWidget : public QWidget
119 {
120 public:
121         BackgroundWidget()
122         {
123                 LYXERR(Debug::GUI, "show banner: " << lyxrc.show_banner);
124                 /// The text to be written on top of the pixmap
125                 QString const text = lyx_version ?
126                         qt_("version ") + lyx_version : qt_("unknown version");
127                 splash_ = getPixmap("images/", "banner", "png");
128
129                 QPainter pain(&splash_);
130                 pain.setPen(QColor(0, 0, 0));
131                 QFont font;
132                 // The font used to display the version info
133                 font.setStyleHint(QFont::SansSerif);
134                 font.setWeight(QFont::Bold);
135                 font.setPointSize(int(toqstr(lyxrc.font_sizes[FONT_SIZE_LARGE]).toDouble()));
136                 pain.setFont(font);
137                 pain.drawText(260, 15, text);
138         }
139
140         void paintEvent(QPaintEvent *)
141         {
142                 int x = (width() - splash_.width()) / 2;
143                 int y = (height() - splash_.height()) / 2;
144                 QPainter pain(this);
145                 pain.drawPixmap(x, y, splash_);
146         }
147
148 private:
149         QPixmap splash_;
150 };
151
152
153 /// Toolbar store providing access to individual toolbars by name.
154 typedef std::map<std::string, GuiToolbar *> ToolbarMap;
155
156 typedef boost::shared_ptr<Dialog> DialogPtr;
157
158 } // namespace anon
159
160
161 struct GuiView::GuiViewPrivate
162 {
163         GuiViewPrivate()
164                 : current_work_area_(0), current_main_work_area_(0),
165                 layout_(0), autosave_timeout_(5000),
166                 in_show_(false)
167         {
168                 // hardcode here the platform specific icon size
169                 smallIconSize = 14;  // scaling problems
170                 normalIconSize = 20; // ok, default
171                 bigIconSize = 26;    // better for some math icons
172
173                 splitter_ = new QSplitter;
174                 bg_widget_ = new BackgroundWidget;
175                 stack_widget_ = new QStackedWidget;
176                 stack_widget_->addWidget(bg_widget_);
177                 stack_widget_->addWidget(splitter_);
178                 setBackground();
179         }
180
181         ~GuiViewPrivate()
182         {
183                 delete splitter_;
184                 delete bg_widget_;
185                 delete stack_widget_;
186         }
187
188         QMenu * toolBarPopup(GuiView * parent)
189         {
190                 // FIXME: translation
191                 QMenu * menu = new QMenu(parent);
192                 QActionGroup * iconSizeGroup = new QActionGroup(parent);
193
194                 QAction * smallIcons = new QAction(iconSizeGroup);
195                 smallIcons->setText(qt_("Small-sized icons"));
196                 smallIcons->setCheckable(true);
197                 QObject::connect(smallIcons, SIGNAL(triggered()),
198                         parent, SLOT(smallSizedIcons()));
199                 menu->addAction(smallIcons);
200
201                 QAction * normalIcons = new QAction(iconSizeGroup);
202                 normalIcons->setText(qt_("Normal-sized icons"));
203                 normalIcons->setCheckable(true);
204                 QObject::connect(normalIcons, SIGNAL(triggered()),
205                         parent, SLOT(normalSizedIcons()));
206                 menu->addAction(normalIcons);
207
208                 QAction * bigIcons = new QAction(iconSizeGroup);
209                 bigIcons->setText(qt_("Big-sized icons"));
210                 bigIcons->setCheckable(true);
211                 QObject::connect(bigIcons, SIGNAL(triggered()),
212                         parent, SLOT(bigSizedIcons()));
213                 menu->addAction(bigIcons);
214
215                 unsigned int cur = parent->iconSize().width();
216                 if ( cur == parent->d.smallIconSize)
217                         smallIcons->setChecked(true);
218                 else if (cur == parent->d.normalIconSize)
219                         normalIcons->setChecked(true);
220                 else if (cur == parent->d.bigIconSize)
221                         bigIcons->setChecked(true);
222
223                 return menu;
224         }
225
226         void setBackground()
227         {
228                 stack_widget_->setCurrentWidget(bg_widget_);
229                 bg_widget_->setUpdatesEnabled(true);
230         }
231
232         TabWorkArea * tabWorkArea(int i)
233         {
234                 return dynamic_cast<TabWorkArea *>(splitter_->widget(i));
235         }
236
237         TabWorkArea * currentTabWorkArea()
238         {
239                 if (splitter_->count() == 1)
240                         // The first TabWorkArea is always the first one, if any.
241                         return tabWorkArea(0);
242
243                 for (int i = 0; i != splitter_->count(); ++i) {
244                         TabWorkArea * twa = tabWorkArea(i);
245                         if (current_main_work_area_ == twa->currentWorkArea())
246                                 return twa;
247                 }
248
249                 // None has the focus so we just take the first one.
250                 return tabWorkArea(0);
251         }
252
253 public:
254         GuiWorkArea * current_work_area_;
255         GuiWorkArea * current_main_work_area_;
256         QSplitter * splitter_;
257         QStackedWidget * stack_widget_;
258         BackgroundWidget * bg_widget_;
259         /// view's toolbars
260         ToolbarMap toolbars_;
261         /// The main layout box.
262         /** 
263          * \warning Don't Delete! The layout box is actually owned by
264          * whichever toolbar contains it. All the GuiView class needs is a
265          * means of accessing it.
266          *
267          * FIXME: replace that with a proper model so that we are not limited
268          * to only one dialog.
269          */
270         LayoutBox * layout_;
271
272         ///
273         map<string, Inset *> open_insets_;
274
275         ///
276         map<string, DialogPtr> dialogs_;
277
278         unsigned int smallIconSize;
279         unsigned int normalIconSize;
280         unsigned int bigIconSize;
281         ///
282         QTimer statusbar_timer_;
283         /// auto-saving of buffers
284         Timeout autosave_timeout_;
285         /// flag against a race condition due to multiclicks, see bug #1119
286         bool in_show_;
287
288         ///
289         TocModels toc_models_;
290 };
291
292
293 GuiView::GuiView(int id)
294         : d(*new GuiViewPrivate), id_(id), closing_(false)
295 {
296         // GuiToolbars *must* be initialised before the menu bar.
297         normalSizedIcons(); // at least on Mac the default is 32 otherwise, which is huge
298         constructToolbars();
299
300         // set ourself as the current view. This is needed for the menu bar
301         // filling, at least for the static special menu item on Mac. Otherwise
302         // they are greyed out.
303         theLyXFunc().setLyXView(this);
304         
305         // Fill up the menu bar.
306         guiApp->menus().fillMenuBar(menuBar(), this, true);
307
308         setCentralWidget(d.stack_widget_);
309
310         // Start autosave timer
311         if (lyxrc.autosave) {
312                 d.autosave_timeout_.timeout.connect(boost::bind(&GuiView::autoSave, this));
313                 d.autosave_timeout_.setTimeout(lyxrc.autosave * 1000);
314                 d.autosave_timeout_.start();
315         }
316         connect(&d.statusbar_timer_, SIGNAL(timeout()),
317                 this, SLOT(clearMessage()));
318
319         // We don't want to keep the window in memory if it is closed.
320         setAttribute(Qt::WA_DeleteOnClose, true);
321
322 #if (!defined(Q_WS_WIN) && !defined(Q_WS_MACX))
323         // assign an icon to main form. We do not do it under Qt/Win or Qt/Mac,
324         // since the icon is provided in the application bundle.
325         setWindowIcon(getPixmap("images/", "lyx", "png"));
326 #endif
327
328         // For Drag&Drop.
329         setAcceptDrops(true);
330
331         statusBar()->setSizeGripEnabled(true);
332
333         // Forbid too small unresizable window because it can happen
334         // with some window manager under X11.
335         setMinimumSize(300, 200);
336
337         if (lyxrc.allow_geometry_session) {
338                 // Now take care of session management.
339                 if (restoreLayout())
340                         return;
341         }
342
343         // no session handling, default to a sane size.
344         setGeometry(50, 50, 690, 510);
345         initToolbars();
346
347         // clear session data if any.
348         QSettings settings;
349         settings.remove("views");
350 }
351
352
353 GuiView::~GuiView()
354 {
355         delete &d;
356 }
357
358
359 void GuiView::saveLayout() const
360 {
361         QSettings settings;
362         settings.beginGroup("views");
363         settings.beginGroup(QString::number(id_));
364 #ifdef Q_WS_X11
365         settings.setValue("pos", pos());
366         settings.setValue("size", size());
367 #else
368         settings.setValue("geometry", saveGeometry());
369 #endif
370         settings.setValue("layout", saveState(0));
371         settings.setValue("icon_size", iconSize());
372 }
373
374
375 bool GuiView::restoreLayout()
376 {
377         QSettings settings;
378         settings.beginGroup("views");
379         settings.beginGroup(QString::number(id_));
380         QString const icon_key = "icon_size";
381         if (!settings.contains(icon_key))
382                 return false;
383
384         //code below is skipped when when ~/.config/LyX is (re)created
385         setIconSize(settings.value(icon_key).toSize());
386 #ifdef Q_WS_X11
387         QPoint pos = settings.value("pos", QPoint(50, 50)).toPoint();
388         QSize size = settings.value("size", QSize(690, 510)).toSize();
389         resize(size);
390         move(pos);
391 #else
392         // Work-around for bug #6034: the window ends up in an undetermined
393         // state when trying to restore a maximized window when it is
394         // already maximized.
395         if (!(windowState() & Qt::WindowMaximized))
396                 if (!restoreGeometry(settings.value("geometry").toByteArray()))
397                         setGeometry(50, 50, 690, 510);
398 #endif
399         // Make sure layout is correctly oriented.
400         setLayoutDirection(qApp->layoutDirection());
401
402         // Allow the toc and view-source dock widget to be restored if needed.
403         Dialog * dialog;
404         if ((dialog = findOrBuild("toc", true)))
405                 // see bug 5082. At least setup title and enabled state.
406                 // Visibility will be adjusted by restoreState below.
407                 dialog->prepareView();
408         if ((dialog = findOrBuild("view-source", true)))
409                 dialog->prepareView();
410
411         if (!restoreState(settings.value("layout").toByteArray(), 0))
412                 initToolbars();
413         updateDialogs();
414         return true;
415 }
416
417
418 GuiToolbar * GuiView::toolbar(string const & name)
419 {
420         ToolbarMap::iterator it = d.toolbars_.find(name);
421         if (it != d.toolbars_.end())
422                 return it->second;
423
424         LYXERR(Debug::GUI, "Toolbar::display: no toolbar named " << name);
425         message(bformat(_("Unknown toolbar \"%1$s\""), from_utf8(name)));
426         return 0;
427 }
428
429
430 void GuiView::constructToolbars()
431 {
432         ToolbarMap::iterator it = d.toolbars_.begin();
433         for (; it != d.toolbars_.end(); ++it)
434                 delete it->second;
435         d.toolbars_.clear();
436
437         // I don't like doing this here, but the standard toolbar
438         // destroys this object when it's destroyed itself (vfr)
439         d.layout_ = new LayoutBox(*this);
440         d.stack_widget_->addWidget(d.layout_);
441         d.layout_->move(0,0);
442
443         // extracts the toolbars from the backend
444         Toolbars::Infos::iterator cit = guiApp->toolbars().begin();
445         Toolbars::Infos::iterator end = guiApp->toolbars().end();
446         for (; cit != end; ++cit)
447                 d.toolbars_[cit->name] =  new GuiToolbar(*cit, *this);
448 }
449
450
451 void GuiView::initToolbars()
452 {
453         // extracts the toolbars from the backend
454         Toolbars::Infos::iterator cit = guiApp->toolbars().begin();
455         Toolbars::Infos::iterator end = guiApp->toolbars().end();
456         for (; cit != end; ++cit) {
457                 GuiToolbar * tb = toolbar(cit->name);
458                 if (!tb)
459                         continue;
460                 int const visibility = guiApp->toolbars().defaultVisibility(cit->name);
461                 bool newline = true;
462                 tb->setVisible(false);
463                 tb->setVisibility(visibility);
464
465                 if (visibility & Toolbars::TOP) {
466                         if (newline)
467                                 addToolBarBreak(Qt::TopToolBarArea);
468                         addToolBar(Qt::TopToolBarArea, tb);
469                 }
470
471                 if (visibility & Toolbars::BOTTOM) {
472                         // Qt < 4.2.2 cannot handle ToolBarBreak on non-TOP dock.
473 #if (QT_VERSION >= 0x040202)
474                         addToolBarBreak(Qt::BottomToolBarArea);
475 #endif
476                         addToolBar(Qt::BottomToolBarArea, tb);
477                 }
478
479                 if (visibility & Toolbars::LEFT) {
480                         // Qt < 4.2.2 cannot handle ToolBarBreak on non-TOP dock.
481 #if (QT_VERSION >= 0x040202)
482                         addToolBarBreak(Qt::LeftToolBarArea);
483 #endif
484                         addToolBar(Qt::LeftToolBarArea, tb);
485                 }
486
487                 if (visibility & Toolbars::RIGHT) {
488                         // Qt < 4.2.2 cannot handle ToolBarBreak on non-TOP dock.
489 #if (QT_VERSION >= 0x040202)
490                         addToolBarBreak(Qt::RightToolBarArea);
491 #endif
492                         addToolBar(Qt::RightToolBarArea, tb);
493                 }
494
495                 if (visibility & Toolbars::ON)
496                         tb->setVisible(true);
497         }
498 }
499
500
501 TocModels & GuiView::tocModels()
502 {
503         return d.toc_models_;
504 }
505
506
507 void GuiView::setFocus()
508 {
509         LYXERR(Debug::DEBUG, "GuiView::setFocus()" << this);
510         // Make sure LyXFunc points to the correct view.
511         guiApp->setCurrentView(this);
512         theLyXFunc().setLyXView(this);
513         QMainWindow::setFocus();
514         if (d.current_work_area_)
515                 d.current_work_area_->setFocus();
516 }
517
518
519 QMenu * GuiView::createPopupMenu()
520 {
521         return d.toolBarPopup(this);
522 }
523
524
525 void GuiView::showEvent(QShowEvent * e)
526 {
527         LYXERR(Debug::GUI, "Passed Geometry "
528                 << size().height() << "x" << size().width()
529                 << "+" << pos().x() << "+" << pos().y());
530
531         if (d.splitter_->count() == 0)
532                 // No work area, switch to the background widget.
533                 d.setBackground();
534
535         QMainWindow::showEvent(e);
536 }
537
538
539 /** Destroy only all tabbed WorkAreas. Destruction of other WorkAreas
540  ** is responsibility of the container (e.g., dialog)
541  **/
542 void GuiView::closeEvent(QCloseEvent * close_event)
543 {
544         LYXERR(Debug::DEBUG, "GuiView::closeEvent()");
545         closing_ = true;
546
547         writeSession();
548
549         // it can happen that this event arrives without selecting the view,
550         // e.g. when clicking the close button on a background window.
551         setFocus();
552         if (!closeWorkAreaAll()) {
553                 closing_ = false;
554                 close_event->ignore();
555                 return;
556         }
557
558         // Make sure that nothing will use this to be closed View.
559         guiApp->unregisterView(this);
560
561         if (isFullScreen()) {
562                 // Switch off fullscreen before closing.
563                 toggleFullScreen();
564                 updateDialogs();
565         }
566
567         // Make sure the timer time out will not trigger a statusbar update.
568         d.statusbar_timer_.stop();
569
570         // Saving fullscreen requires additional tweaks in the toolbar code.
571         // It wouldn't also work under linux natively.
572         if (lyxrc.allow_geometry_session) {
573                 // Save this window geometry and layout.
574                 saveLayout();
575                 // Then the toolbar private states.
576                 ToolbarMap::iterator end = d.toolbars_.end();
577                 for (ToolbarMap::iterator it = d.toolbars_.begin(); it != end; ++it)
578                         it->second->saveSession();
579                 // Now take care of all other dialogs:
580                 map<string, DialogPtr>::const_iterator it = d.dialogs_.begin();
581                 for (; it!= d.dialogs_.end(); ++it)
582                         it->second->saveSession();
583         }
584
585         close_event->accept();
586 }
587
588
589 void GuiView::dragEnterEvent(QDragEnterEvent * event)
590 {
591         if (event->mimeData()->hasUrls())
592                 event->accept();
593         /// \todo Ask lyx-devel is this is enough:
594         /// if (event->mimeData()->hasFormat("text/plain"))
595         ///     event->acceptProposedAction();
596 }
597
598
599 void GuiView::dropEvent(QDropEvent * event)
600 {
601         QList<QUrl> files = event->mimeData()->urls();
602         if (files.isEmpty())
603                 return;
604
605         LYXERR(Debug::GUI, "GuiView::dropEvent: got URLs!");
606         for (int i = 0; i != files.size(); ++i) {
607                 string const file = os::internal_path(fromqstr(
608                         files.at(i).toLocalFile()));
609                 if (!file.empty()) {
610                         // Asynchronously post the event. DropEvent usually come
611                         // from the BufferView. But reloading a file might close
612                         // the BufferView from within its own event handler.
613                         guiApp->dispatchDelayed(FuncRequest(LFUN_FILE_OPEN, file));
614                         event->accept();
615                 }
616         }
617 }
618
619
620 void GuiView::message(docstring const & str)
621 {
622         if (ForkedProcess::iAmAChild())
623                 return;
624
625         statusBar()->showMessage(toqstr(str));
626         d.statusbar_timer_.stop();
627         d.statusbar_timer_.start(3000);
628 }
629
630
631 void GuiView::smallSizedIcons()
632 {
633         setIconSize(QSize(d.smallIconSize, d.smallIconSize));
634 }
635
636
637 void GuiView::normalSizedIcons()
638 {
639         setIconSize(QSize(d.normalIconSize, d.normalIconSize));
640 }
641
642
643 void GuiView::bigSizedIcons()
644 {
645         setIconSize(QSize(d.bigIconSize, d.bigIconSize));
646 }
647
648
649 void GuiView::clearMessage()
650 {
651         if (!hasFocus())
652                 return;
653         theLyXFunc().setLyXView(this);
654         statusBar()->showMessage(toqstr(theLyXFunc().viewStatusMessage()));
655         d.statusbar_timer_.stop();
656 }
657
658
659 void GuiView::updateWindowTitle(GuiWorkArea * wa)
660 {
661         if (wa != d.current_work_area_)
662                 return;
663         setWindowTitle(qt_("LyX: ") + wa->windowTitle());
664         setWindowIconText(wa->windowIconText());
665 }
666
667
668 void GuiView::on_currentWorkAreaChanged(GuiWorkArea * wa)
669 {
670         disconnectBuffer();
671         disconnectBufferView();
672         connectBufferView(wa->bufferView());
673         connectBuffer(wa->bufferView().buffer());
674         d.current_work_area_ = wa;
675         QObject::connect(wa, SIGNAL(titleChanged(GuiWorkArea *)),
676                 this, SLOT(updateWindowTitle(GuiWorkArea *)));
677         updateWindowTitle(wa);
678
679         structureChanged();
680
681         // The document settings needs to be reinitialised.
682         updateDialog("document", "");
683
684         // Buffer-dependent dialogs must be updated. This is done here because
685         // some dialogs require buffer()->text.
686         updateDialogs();
687 }
688
689
690 void GuiView::on_lastWorkAreaRemoved()
691 {
692         if (closing_)
693                 // We already are in a close event. Nothing more to do.
694                 return;
695
696         if (d.splitter_->count() > 1)
697                 // We have a splitter so don't close anything.
698                 return;
699
700         // Reset and updates the dialogs.
701         d.toc_models_.reset(0);
702         updateDialog("document", "");
703         updateDialogs();
704
705         resetWindowTitleAndIconText();
706
707         if (lyxrc.open_buffers_in_tabs)
708                 // Nothing more to do, the window should stay open.
709                 return;
710
711         if (guiApp->viewIds().size() > 1) {
712                 close();
713                 return;
714         }
715
716 #ifdef Q_WS_MACX
717         // On Mac we also close the last window because the application stay
718         // resident in memory. On other platforms we don't close the last
719         // window because this would quit the application.
720         close();
721 #endif
722 }
723
724
725 void GuiView::updateStatusBar()
726 {
727         // let the user see the explicit message
728         if (d.statusbar_timer_.isActive())
729                 return;
730
731         theLyXFunc().setLyXView(this);
732         statusBar()->showMessage(toqstr(theLyXFunc().viewStatusMessage()));
733 }
734
735
736 bool GuiView::hasFocus() const
737 {
738         return qApp->activeWindow() == this;
739 }
740
741
742 bool GuiView::event(QEvent * e)
743 {
744         switch (e->type())
745         {
746         // Useful debug code:
747         //case QEvent::ActivationChange:
748         //case QEvent::WindowDeactivate:
749         //case QEvent::Paint:
750         //case QEvent::Enter:
751         //case QEvent::Leave:
752         //case QEvent::HoverEnter:
753         //case QEvent::HoverLeave:
754         //case QEvent::HoverMove:
755         //case QEvent::StatusTip:
756         //case QEvent::DragEnter:
757         //case QEvent::DragLeave:
758         //case QEvent::Drop:
759         //      break;
760
761         case QEvent::WindowActivate: {
762                 if (this == guiApp->currentView()) {
763                         setFocus();
764                         return QMainWindow::event(e);
765                 }
766                 guiApp->setCurrentView(this);
767                 theLyXFunc().setLyXView(this);
768                 if (d.current_work_area_) {
769                         BufferView & bv = d.current_work_area_->bufferView();
770                         connectBufferView(bv);
771                         connectBuffer(bv.buffer());
772                         // The document structure, name and dialogs might have
773                         // changed in another view.
774                         structureChanged();
775                         // The document settings needs to be reinitialised.
776                         updateDialog("document", "");
777                         updateDialogs();
778                 } else {
779                         resetWindowTitleAndIconText();
780                 }
781                 setFocus();
782                 return QMainWindow::event(e);
783         }
784
785         case QEvent::ShortcutOverride: {
786
787 // See bug 4888
788 #if (!defined Q_WS_X11) || (QT_VERSION >= 0x040500)
789                 if (isFullScreen() && menuBar()->isHidden()) {
790                         QKeyEvent * ke = static_cast<QKeyEvent*>(e);
791                         // FIXME: we should also try to detect special LyX shortcut such as
792                         // Alt-P and Alt-M. Right now there is a hack in
793                         // GuiWorkArea::processKeySym() that hides again the menubar for
794                         // those cases.
795                         if (ke->modifiers() & Qt::AltModifier && ke->key() != Qt::Key_Alt) {
796                                 menuBar()->show();
797                                 return QMainWindow::event(e);
798                         }
799                 }
800 #endif
801
802                 if (d.current_work_area_)
803                         // Nothing special to do.
804                         return QMainWindow::event(e);
805
806                 QKeyEvent * ke = static_cast<QKeyEvent*>(e);
807                 // Let Qt handle menu access and the Tab keys to navigate keys to navigate
808                 // between controls.
809                 if (ke->modifiers() & Qt::AltModifier || ke->key() == Qt::Key_Tab 
810                         || ke->key() == Qt::Key_Backtab)
811                         return QMainWindow::event(e);
812
813                 // Allow processing of shortcuts that are allowed even when no Buffer
814                 // is viewed.
815                 theLyXFunc().setLyXView(this);
816                 KeySymbol sym;
817                 setKeySymbol(&sym, ke);
818                 theLyXFunc().processKeySym(sym, q_key_state(ke->modifiers()));
819                 e->accept();
820                 return true;
821         }
822
823         default:
824                 return QMainWindow::event(e);
825         }
826 }
827
828 void GuiView::resetWindowTitleAndIconText()
829 {
830     setWindowTitle(qt_("LyX"));
831     setWindowIconText(qt_("LyX"));
832 }
833
834 bool GuiView::focusNextPrevChild(bool /*next*/)
835 {
836         setFocus();
837         return true;
838 }
839
840
841 void GuiView::setBusy(bool busy)
842 {
843         if (d.current_work_area_) {
844                 d.current_work_area_->setUpdatesEnabled(!busy);
845                 if (busy)
846                         d.current_work_area_->stopBlinkingCursor();
847                 else
848                         d.current_work_area_->startBlinkingCursor();
849         }
850
851         if (busy)
852                 QApplication::setOverrideCursor(Qt::WaitCursor);
853         else
854                 QApplication::restoreOverrideCursor();
855 }
856
857
858 GuiWorkArea * GuiView::workArea(Buffer & buffer)
859 {
860         if (currentWorkArea()
861             && &currentWorkArea()->bufferView().buffer() == &buffer)
862                 return (GuiWorkArea *) currentWorkArea();
863         if (TabWorkArea * twa = d.currentTabWorkArea())
864                 return twa->workArea(buffer);
865         return 0;
866 }
867
868
869 GuiWorkArea * GuiView::addWorkArea(Buffer & buffer)
870 {
871         // Automatically create a TabWorkArea if there are none yet.
872         TabWorkArea * tab_widget = d.splitter_->count() 
873                 ? d.currentTabWorkArea() : addTabWorkArea();
874         return tab_widget->addWorkArea(buffer, *this);
875 }
876
877
878 TabWorkArea * GuiView::addTabWorkArea()
879 {
880         TabWorkArea * twa = new TabWorkArea;
881         QObject::connect(twa, SIGNAL(currentWorkAreaChanged(GuiWorkArea *)),
882                 this, SLOT(on_currentWorkAreaChanged(GuiWorkArea *)));
883         QObject::connect(twa, SIGNAL(lastWorkAreaRemoved()),
884                          this, SLOT(on_lastWorkAreaRemoved()));
885
886         d.splitter_->addWidget(twa);
887         d.stack_widget_->setCurrentWidget(d.splitter_);
888         return twa;
889 }
890
891
892 GuiWorkArea const * GuiView::currentWorkArea() const
893 {
894         return d.current_work_area_;
895 }
896
897
898 GuiWorkArea * GuiView::currentWorkArea()
899 {
900         return d.current_work_area_;
901 }
902
903
904 GuiWorkArea const * GuiView::currentMainWorkArea() const
905 {
906         if (d.currentTabWorkArea() == NULL)
907                 return NULL;
908         return d.currentTabWorkArea()->currentWorkArea();
909 }
910
911
912 GuiWorkArea * GuiView::currentMainWorkArea()
913 {
914         if (d.currentTabWorkArea() == NULL)
915                 return NULL;
916         return d.currentTabWorkArea()->currentWorkArea();
917 }
918
919
920 void GuiView::setCurrentWorkArea(GuiWorkArea * wa)
921 {
922         LYXERR(Debug::DEBUG, "Setting current wa: " << wa << endl);
923         if (wa == NULL) {
924                 d.current_work_area_ = NULL;
925                 d.setBackground();
926                 return;
927         }
928         GuiWorkArea * old_gwa = theGuiApp()->currentView()->currentWorkArea();
929         if (old_gwa == wa)
930                 return;
931
932         if (view())
933                 cap::saveSelection(view()->cursor());
934
935         theGuiApp()->setCurrentView(this);
936         d.current_work_area_ = wa;
937         for (int i = 0; i != d.splitter_->count(); ++i) {
938                 if (d.tabWorkArea(i)->setCurrentWorkArea(wa)) {
939                         //if (d.current_main_work_area_)
940                         //      d.current_main_work_area_->setFrameStyle(QFrame::NoFrame);
941                         d.current_main_work_area_ = wa;
942                         //d.current_main_work_area_->setFrameStyle(QFrame::Box | QFrame::Plain);
943                         //d.current_main_work_area_->setLineWidth(2);
944                         LYXERR(Debug::DEBUG, "Current wa: " << currentWorkArea() << ", Current main wa: " << currentMainWorkArea());
945                         return;
946                 }
947         }
948         LYXERR(Debug::DEBUG, "This is not a tabbed wa");
949         on_currentWorkAreaChanged(wa);
950         BufferView & bv = wa->bufferView();
951         bv.cursor().fixIfBroken();
952         bv.updateMetrics();
953         wa->setUpdatesEnabled(true);
954         LYXERR(Debug::DEBUG, "Current wa: " << currentWorkArea() << ", Current main wa: " << currentMainWorkArea());
955 }
956
957
958 void GuiView::removeWorkArea(GuiWorkArea * wa)
959 {
960         LASSERT(wa, return);
961         if (wa == d.current_work_area_) {
962                 disconnectBuffer();
963                 disconnectBufferView();
964                 d.current_work_area_ = 0;
965                 d.current_main_work_area_ = 0;
966         }
967
968         bool found_twa = false;
969         for (int i = 0; i != d.splitter_->count(); ++i) {
970                 TabWorkArea * twa = d.tabWorkArea(i);
971                 if (twa->removeWorkArea(wa)) {
972                         // Found in this tab group, and deleted the GuiWorkArea.
973                         found_twa = true;
974                         if (twa->count() != 0) {
975                                 if (d.current_work_area_ == 0)
976                                         // This means that we are closing the current GuiWorkArea, so
977                                         // switch to the next GuiWorkArea in the found TabWorkArea.
978                                         setCurrentWorkArea(twa->currentWorkArea());
979                         } else {
980                                 // No more WorkAreas in this tab group, so delete it.
981                                 delete twa;
982                         }
983                         break;
984                 }
985         }
986
987         // It is not a tabbed work area (i.e., the search work area), so it
988         // should be deleted by other means.
989         LASSERT(found_twa, /* */);
990
991         if (d.current_work_area_ == 0) {
992                 if (d.splitter_->count() != 0) {
993                         TabWorkArea * twa = d.currentTabWorkArea();
994                         setCurrentWorkArea(twa->currentWorkArea());
995                 } else {
996                         // No more work areas, switch to the background widget.
997                         setCurrentWorkArea(0);
998                 }
999         }
1000 }
1001
1002
1003 LayoutBox * GuiView::getLayoutDialog() const
1004 {
1005         return d.layout_;
1006 }
1007
1008
1009 void GuiView::updateLayoutList()
1010 {
1011         if (d.layout_)
1012                 d.layout_->updateContents(false);
1013 }
1014
1015
1016 void GuiView::updateToolbars()
1017 {
1018         ToolbarMap::iterator end = d.toolbars_.end();
1019         if (d.current_work_area_) {
1020                 bool const math =
1021                         d.current_work_area_->bufferView().cursor().inMathed();
1022                 bool const table =
1023                         lyx::getStatus(FuncRequest(LFUN_LAYOUT_TABULAR)).enabled();
1024                 bool const review =
1025                         lyx::getStatus(FuncRequest(LFUN_CHANGES_TRACK)).enabled() &&
1026                         lyx::getStatus(FuncRequest(LFUN_CHANGES_TRACK)).onoff(true);
1027                 bool const mathmacrotemplate =
1028                         lyx::getStatus(FuncRequest(LFUN_IN_MATHMACROTEMPLATE)).enabled();
1029
1030                 for (ToolbarMap::iterator it = d.toolbars_.begin(); it != end; ++it)
1031                         it->second->update(math, table, review, mathmacrotemplate);
1032         } else
1033                 for (ToolbarMap::iterator it = d.toolbars_.begin(); it != end; ++it)
1034                         it->second->update(false, false, false, false);
1035 }
1036
1037
1038 Buffer * GuiView::buffer()
1039 {
1040         if (d.current_work_area_)
1041                 return &d.current_work_area_->bufferView().buffer();
1042         return 0;
1043 }
1044
1045
1046 Buffer const * GuiView::buffer() const
1047 {
1048         if (d.current_work_area_)
1049                 return &d.current_work_area_->bufferView().buffer();
1050         return 0;
1051 }
1052
1053
1054 void GuiView::setBuffer(Buffer * newBuffer)
1055 {
1056         LYXERR(Debug::DEBUG, "Setting buffer: " << newBuffer << std::endl);
1057         LASSERT(newBuffer, return);
1058         setBusy(true);
1059
1060         GuiWorkArea * wa = workArea(*newBuffer);
1061         if (wa == 0) {
1062                 newBuffer->masterBuffer()->updateLabels();
1063                 wa = addWorkArea(*newBuffer);
1064         } else {
1065                 //Disconnect the old buffer...there's no new one.
1066                 disconnectBuffer();
1067         }
1068         connectBuffer(*newBuffer);
1069         connectBufferView(wa->bufferView());
1070         setCurrentWorkArea(wa);
1071
1072         setBusy(false);
1073 }
1074
1075
1076 void GuiView::connectBuffer(Buffer & buf)
1077 {
1078         buf.setGuiDelegate(this);
1079 }
1080
1081
1082 void GuiView::disconnectBuffer()
1083 {
1084         if (d.current_work_area_)
1085                 d.current_work_area_->bufferView().buffer().setGuiDelegate(0);
1086 }
1087
1088
1089 void GuiView::connectBufferView(BufferView & bv)
1090 {
1091         bv.setGuiDelegate(this);
1092 }
1093
1094
1095 void GuiView::disconnectBufferView()
1096 {
1097         if (d.current_work_area_)
1098                 d.current_work_area_->bufferView().setGuiDelegate(0);
1099 }
1100
1101
1102 void GuiView::errors(string const & error_type, bool from_master)
1103 {
1104         ErrorList & el = from_master ? 
1105                 buffer()->masterBuffer()->errorList(error_type)
1106                 : buffer()->errorList(error_type);
1107         string data = error_type;
1108         if (from_master)
1109                 data = "from_master|" + error_type;
1110         if (!el.empty())
1111                 showDialog("errorlist", data);
1112 }
1113
1114
1115 void GuiView::updateTocItem(std::string const & type, DocIterator const & dit)
1116 {
1117         d.toc_models_.updateItem(toqstr(type), dit);
1118 }
1119
1120
1121 void GuiView::structureChanged()
1122 {
1123         d.toc_models_.reset(view());
1124         // Navigator needs more than a simple update in this case. It needs to be
1125         // rebuilt.
1126         updateDialog("toc", "");
1127 }
1128
1129
1130 void GuiView::updateDialog(string const & name, string const & data)
1131 {
1132         if (!isDialogVisible(name))
1133                 return;
1134
1135         map<string, DialogPtr>::const_iterator it = d.dialogs_.find(name);
1136         if (it == d.dialogs_.end())
1137                 return;
1138
1139         Dialog * const dialog = it->second.get();
1140         if (dialog->isVisibleView())
1141                 dialog->initialiseParams(data);
1142 }
1143
1144
1145 BufferView * GuiView::view()
1146 {
1147         return d.current_work_area_ ? &d.current_work_area_->bufferView() : 0;
1148 }
1149
1150
1151 void GuiView::autoSave()
1152 {
1153         LYXERR(Debug::INFO, "Running autoSave()");
1154
1155         if (buffer())
1156                 view()->buffer().autoSave();
1157 }
1158
1159
1160 void GuiView::resetAutosaveTimers()
1161 {
1162         if (lyxrc.autosave)
1163                 d.autosave_timeout_.restart();
1164 }
1165
1166
1167 bool GuiView::getStatus(FuncRequest const & cmd, FuncStatus & flag)
1168 {
1169         bool enable = true;
1170         Buffer * buf = buffer();
1171
1172         if (cmd.origin == FuncRequest::TOC) {
1173                 GuiToc * toc = static_cast<GuiToc*>(findOrBuild("toc", false));
1174                 FuncStatus fs;
1175                 if (toc->getStatus(view()->cursor(), cmd, fs))
1176                         flag |= fs;
1177                 else
1178                         flag.setEnabled(false);
1179                 return true;
1180         }
1181
1182         switch(cmd.action) {
1183         case LFUN_BUFFER_WRITE:
1184                 enable = buf && (buf->isUnnamed() || !buf->isClean());
1185                 break;
1186
1187         case LFUN_BUFFER_WRITE_AS:
1188                 enable = buf;
1189                 break;
1190
1191         case LFUN_BUFFER_CLOSE_ALL:
1192                 enable = theBufferList().last() != theBufferList().first();
1193                 break;
1194
1195         case LFUN_SPLIT_VIEW:
1196                 if (cmd.getArg(0) == "vertical")
1197                         enable = buf && (d.splitter_->count() == 1 ||
1198                                          d.splitter_->orientation() == Qt::Vertical);
1199                 else
1200                         enable = buf && (d.splitter_->count() == 1 ||
1201                                          d.splitter_->orientation() == Qt::Horizontal);
1202                 break;
1203
1204         case LFUN_CLOSE_TAB_GROUP:
1205                 enable = d.currentTabWorkArea();
1206                 break;
1207
1208         case LFUN_TOOLBAR_TOGGLE:
1209                 if (GuiToolbar * t = toolbar(cmd.getArg(0)))
1210                         flag.setOnOff(t->isVisible());
1211                 break;
1212
1213         case LFUN_UI_TOGGLE:
1214                 flag.setOnOff(isFullScreen());
1215                 break;
1216
1217         case LFUN_DIALOG_TOGGLE:
1218                 flag.setOnOff(isDialogVisible(cmd.getArg(0)));
1219                 // fall through to set "enable"
1220         case LFUN_DIALOG_SHOW: {
1221                 string const name = cmd.getArg(0);
1222                 if (!buf)
1223                         enable = name == "aboutlyx"
1224                                 || name == "file" //FIXME: should be removed.
1225                                 || name == "prefs"
1226                                 || name == "texinfo";
1227                 else if (name == "print")
1228                         enable = buf->isExportable("dvi")
1229                                 && lyxrc.print_command != "none";
1230                 else if (name == "character" || name == "symbols") {
1231                         if (buf->isReadonly() || !view() || !view()->cursor().inTexted())
1232                                 enable = false;
1233                         else {
1234                                 // FIXME we should consider passthru
1235                                 // paragraphs too.
1236                                 Inset const & in = view()->cursor().inset();
1237                                 enable = !in.getLayout().isPassThru();
1238                         }
1239                 }
1240                 else if (name == "latexlog")
1241                         enable = FileName(buf->logName()).isReadableFile();
1242                 else if (name == "spellchecker")
1243                         enable = theSpellChecker() && !buf->isReadonly();
1244                 else if (name == "vclog")
1245                         enable = buf->lyxvc().inUse();
1246                 break;
1247         }
1248
1249         case LFUN_DIALOG_UPDATE: {
1250                 string const name = cmd.getArg(0);
1251                 if (!buf)
1252                         enable = name == "prefs";
1253                 break;
1254         }
1255
1256         case LFUN_INSET_APPLY: {
1257                 string const name = cmd.getArg(0);
1258                 Inset * inset = getOpenInset(name);
1259                 if (inset) {
1260                         FuncRequest fr(LFUN_INSET_MODIFY, cmd.argument());
1261                         FuncStatus fs;
1262                         if (!inset->getStatus(view()->cursor(), fr, fs)) {
1263                                 // Every inset is supposed to handle this
1264                                 LASSERT(false, break);
1265                         }
1266                         flag |= fs;
1267                 } else {
1268                         FuncRequest fr(LFUN_INSET_INSERT, cmd.argument());
1269                         flag |= lyx::getStatus(fr);
1270                 }
1271                 enable = flag.enabled();
1272                 break;
1273         }
1274
1275         case LFUN_COMPLETION_INLINE:
1276                 if (!d.current_work_area_
1277                     || !d.current_work_area_->completer().inlinePossible(view()->cursor()))
1278                     enable = false;
1279                 break;
1280
1281         case LFUN_COMPLETION_POPUP:
1282                 if (!d.current_work_area_
1283                     || !d.current_work_area_->completer().popupPossible(view()->cursor()))
1284                     enable = false;
1285                 break;
1286
1287         case LFUN_COMPLETION_COMPLETE:
1288                 if (!d.current_work_area_
1289                         || !d.current_work_area_->completer().inlinePossible(view()->cursor()))
1290                     enable = false;
1291                 break;
1292
1293         case LFUN_COMPLETION_ACCEPT:
1294                 if (!d.current_work_area_
1295                     || (!d.current_work_area_->completer().popupVisible()
1296                         && !d.current_work_area_->completer().inlineVisible()
1297                         && !d.current_work_area_->completer().completionAvailable()))
1298                         enable = false;
1299                 break;
1300
1301         case LFUN_COMPLETION_CANCEL:
1302                 if (!d.current_work_area_
1303                     || (!d.current_work_area_->completer().popupVisible()
1304                         && !d.current_work_area_->completer().inlineVisible()))
1305                         enable = false;
1306                 break;
1307
1308         case LFUN_BUFFER_ZOOM_OUT:
1309                 enable = buf && lyxrc.zoom > 10;
1310                 break;
1311
1312         case LFUN_BUFFER_ZOOM_IN:
1313                 enable = buf;
1314                 break;
1315
1316         default:
1317                 return false;
1318         }
1319
1320         if (!enable)
1321                 flag.setEnabled(false);
1322
1323         return true;
1324 }
1325
1326
1327 static FileName selectTemplateFile()
1328 {
1329         FileDialog dlg(qt_("Select template file"));
1330         dlg.setButton1(qt_("Documents|#o#O"), toqstr(lyxrc.document_path));
1331         dlg.setButton1(qt_("Templates|#T#t"), toqstr(lyxrc.template_path));
1332
1333         FileDialog::Result result = dlg.open(toqstr(lyxrc.template_path),
1334                              QStringList(qt_("LyX Documents (*.lyx)")));
1335
1336         if (result.first == FileDialog::Later)
1337                 return FileName();
1338         if (result.second.isEmpty())
1339                 return FileName();
1340         return FileName(fromqstr(result.second));
1341 }
1342
1343
1344 Buffer * GuiView::loadDocument(FileName const & filename, bool tolastfiles)
1345 {
1346         setBusy(true);
1347
1348         Buffer * newBuffer = checkAndLoadLyXFile(filename);
1349
1350         if (!newBuffer) {
1351                 message(_("Document not loaded."));
1352                 setBusy(false);
1353                 return 0;
1354         }
1355         
1356         setBuffer(newBuffer);
1357
1358         // scroll to the position when the file was last closed
1359         if (lyxrc.use_lastfilepos) {
1360                 LastFilePosSection::FilePos filepos =
1361                         theSession().lastFilePos().load(filename);
1362                 view()->moveToPosition(filepos.pit, filepos.pos, 0, 0);
1363         }
1364
1365         if (tolastfiles)
1366                 theSession().lastFiles().add(filename);
1367
1368         setBusy(false);
1369         return newBuffer;
1370 }
1371
1372
1373 void GuiView::openDocument(string const & fname)
1374 {
1375         string initpath = lyxrc.document_path;
1376
1377         if (buffer()) {
1378                 string const trypath = buffer()->filePath();
1379                 // If directory is writeable, use this as default.
1380                 if (FileName(trypath).isDirWritable())
1381                         initpath = trypath;
1382         }
1383
1384         string filename;
1385
1386         if (fname.empty()) {
1387                 FileDialog dlg(qt_("Select document to open"), LFUN_FILE_OPEN);
1388                 dlg.setButton1(qt_("Documents|#o#O"), toqstr(lyxrc.document_path));
1389                 dlg.setButton2(qt_("Examples|#E#e"),
1390                                 toqstr(addPath(package().system_support().absFilename(), "examples")));
1391
1392                 QStringList filter(qt_("LyX Documents (*.lyx)"));
1393                 filter << qt_("LyX-1.3.x Documents (*.lyx13)")
1394                         << qt_("LyX-1.4.x Documents (*.lyx14)")
1395                         << qt_("LyX-1.5.x Documents (*.lyx15)")
1396                         << qt_("LyX-1.6.x Documents (*.lyx16)");
1397                 FileDialog::Result result =
1398                         dlg.open(toqstr(initpath), filter);
1399
1400                 if (result.first == FileDialog::Later)
1401                         return;
1402
1403                 filename = fromqstr(result.second);
1404
1405                 // check selected filename
1406                 if (filename.empty()) {
1407                         message(_("Canceled."));
1408                         return;
1409                 }
1410         } else
1411                 filename = fname;
1412
1413         // get absolute path of file and add ".lyx" to the filename if
1414         // necessary. 
1415         FileName const fullname = 
1416                         fileSearch(string(), filename, "lyx", support::may_not_exist);
1417         if (!fullname.empty())
1418                 filename = fullname.absFilename();
1419
1420         if (!fullname.onlyPath().isDirectory()) {
1421                 Alert::warning(_("Invalid filename"),
1422                                 bformat(_("The directory in the given path\n%1$s\ndoes not exist."),
1423                                 from_utf8(fullname.absFilename())));
1424                 return;
1425         }
1426         // if the file doesn't exist, let the user create one
1427         if (!fullname.exists()) {
1428                 // the user specifically chose this name. Believe him.
1429                 Buffer * const b = newFile(filename, string(), true);
1430                 if (b)
1431                         setBuffer(b);
1432                 return;
1433         }
1434
1435         docstring const disp_fn = makeDisplayPath(filename);
1436         message(bformat(_("Opening document %1$s..."), disp_fn));
1437
1438         docstring str2;
1439         Buffer * buf = loadDocument(fullname);
1440         if (buf) {
1441                 buf->updateLabels();
1442                 setBuffer(buf);
1443                 buf->errors("Parse");
1444                 str2 = bformat(_("Document %1$s opened."), disp_fn);
1445                 if (buf->lyxvc().inUse())
1446                         str2 += " " + from_utf8(buf->lyxvc().versionString()) +
1447                                 " " + _("Version control detected.");
1448         } else {
1449                 str2 = bformat(_("Could not open document %1$s"), disp_fn);
1450         }
1451         message(str2);
1452 }
1453
1454 // FIXME: clean that
1455 static bool import(GuiView * lv, FileName const & filename,
1456         string const & format, ErrorList & errorList)
1457 {
1458         FileName const lyxfile(support::changeExtension(filename.absFilename(), ".lyx"));
1459
1460         string loader_format;
1461         vector<string> loaders = theConverters().loaders();
1462         if (find(loaders.begin(), loaders.end(), format) == loaders.end()) {
1463                 for (vector<string>::const_iterator it = loaders.begin();
1464                      it != loaders.end(); ++it) {
1465                         if (!theConverters().isReachable(format, *it))
1466                                 continue;
1467
1468                         string const tofile =
1469                                 support::changeExtension(filename.absFilename(),
1470                                 formats.extension(*it));
1471                         if (!theConverters().convert(0, filename, FileName(tofile),
1472                                 filename, format, *it, errorList))
1473                                 return false;
1474                         loader_format = *it;
1475                         break;
1476                 }
1477                 if (loader_format.empty()) {
1478                         frontend::Alert::error(_("Couldn't import file"),
1479                                      bformat(_("No information for importing the format %1$s."),
1480                                          formats.prettyName(format)));
1481                         return false;
1482                 }
1483         } else
1484                 loader_format = format;
1485
1486         if (loader_format == "lyx") {
1487                 Buffer * buf = lv->loadDocument(lyxfile);
1488                 if (!buf)
1489                         return false;
1490                 buf->updateLabels();
1491                 lv->setBuffer(buf);
1492                 buf->errors("Parse");
1493         } else {
1494                 Buffer * const b = newFile(lyxfile.absFilename(), string(), true);
1495                 if (!b)
1496                         return false;
1497                 lv->setBuffer(b);
1498                 bool as_paragraphs = loader_format == "textparagraph";
1499                 string filename2 = (loader_format == format) ? filename.absFilename()
1500                         : support::changeExtension(filename.absFilename(),
1501                                           formats.extension(loader_format));
1502                 lv->view()->insertPlaintextFile(FileName(filename2), as_paragraphs);
1503                 theLyXFunc().setLyXView(lv);
1504                 lyx::dispatch(FuncRequest(LFUN_MARK_OFF));
1505         }
1506
1507         return true;
1508 }
1509
1510
1511 void GuiView::importDocument(string const & argument)
1512 {
1513         string format;
1514         string filename = split(argument, format, ' ');
1515
1516         LYXERR(Debug::INFO, format << " file: " << filename);
1517
1518         // need user interaction
1519         if (filename.empty()) {
1520                 string initpath = lyxrc.document_path;
1521
1522                 Buffer const * buf = buffer();
1523                 if (buf) {
1524                         string const trypath = buf->filePath();
1525                         // If directory is writeable, use this as default.
1526                         if (FileName(trypath).isDirWritable())
1527                                 initpath = trypath;
1528                 }
1529
1530                 docstring const text = bformat(_("Select %1$s file to import"),
1531                         formats.prettyName(format));
1532
1533                 FileDialog dlg(toqstr(text), LFUN_BUFFER_IMPORT);
1534                 dlg.setButton1(qt_("Documents|#o#O"), toqstr(lyxrc.document_path));
1535                 dlg.setButton2(qt_("Examples|#E#e"),
1536                         toqstr(addPath(package().system_support().absFilename(), "examples")));
1537
1538                 docstring filter = formats.prettyName(format);
1539                 filter += " (*.";
1540                 // FIXME UNICODE
1541                 filter += from_utf8(formats.extension(format));
1542                 filter += ')';
1543
1544                 FileDialog::Result result =
1545                         dlg.open(toqstr(initpath), fileFilters(toqstr(filter)));
1546
1547                 if (result.first == FileDialog::Later)
1548                         return;
1549
1550                 filename = fromqstr(result.second);
1551
1552                 // check selected filename
1553                 if (filename.empty())
1554                         message(_("Canceled."));
1555         }
1556
1557         if (filename.empty())
1558                 return;
1559
1560         // get absolute path of file
1561         FileName const fullname(support::makeAbsPath(filename));
1562
1563         FileName const lyxfile(support::changeExtension(fullname.absFilename(), ".lyx"));
1564
1565         // Check if the document already is open
1566         Buffer * buf = theBufferList().getBuffer(lyxfile);
1567         if (buf) {
1568                 setBuffer(buf);
1569                 if (!closeBuffer()) {
1570                         message(_("Canceled."));
1571                         return;
1572                 }
1573         }
1574
1575         docstring const displaypath = makeDisplayPath(lyxfile.absFilename(), 30);
1576
1577         // if the file exists already, and we didn't do
1578         // -i lyx thefile.lyx, warn
1579         if (lyxfile.exists() && fullname != lyxfile) {
1580
1581                 docstring text = bformat(_("The document %1$s already exists.\n\n"
1582                         "Do you want to overwrite that document?"), displaypath);
1583                 int const ret = Alert::prompt(_("Overwrite document?"),
1584                         text, 0, 1, _("&Overwrite"), _("&Cancel"));
1585
1586                 if (ret == 1) {
1587                         message(_("Canceled."));
1588                         return;
1589                 }
1590         }
1591
1592         message(bformat(_("Importing %1$s..."), displaypath));
1593         ErrorList errorList;
1594         if (import(this, fullname, format, errorList))
1595                 message(_("imported."));
1596         else
1597                 message(_("file not imported!"));
1598
1599         // FIXME (Abdel 12/08/06): Is there a need to display the error list here?
1600 }
1601
1602
1603 void GuiView::newDocument(string const & filename, bool from_template)
1604 {
1605         FileName initpath(lyxrc.document_path);
1606         Buffer * buf = buffer();
1607         if (buf) {
1608                 FileName const trypath(buf->filePath());
1609                 // If directory is writeable, use this as default.
1610                 if (trypath.isDirWritable())
1611                         initpath = trypath;
1612         }
1613
1614         string templatefile;
1615         if (from_template) {
1616                 templatefile = selectTemplateFile().absFilename();
1617                 if (templatefile.empty())
1618                         return;
1619         }
1620         
1621         Buffer * b;
1622         if (filename.empty())
1623                 b = newUnnamedFile(templatefile, initpath);
1624         else
1625                 b = newFile(filename, templatefile, true);
1626
1627         if (b)
1628                 setBuffer(b);
1629
1630         // If no new document could be created, it is unsure 
1631         // whether there is a valid BufferView.
1632         if (view())
1633                 // Ensure the cursor is correctly positioned on screen.
1634                 view()->showCursor();
1635 }
1636
1637
1638 void GuiView::insertLyXFile(docstring const & fname)
1639 {
1640         BufferView * bv = view();
1641         if (!bv)
1642                 return;
1643
1644         // FIXME UNICODE
1645         FileName filename(to_utf8(fname));
1646         
1647         if (!filename.empty()) {
1648                 bv->insertLyXFile(filename);
1649                 return;
1650         }
1651
1652         // Launch a file browser
1653         // FIXME UNICODE
1654         string initpath = lyxrc.document_path;
1655         string const trypath = bv->buffer().filePath();
1656         // If directory is writeable, use this as default.
1657         if (FileName(trypath).isDirWritable())
1658                 initpath = trypath;
1659
1660         // FIXME UNICODE
1661         FileDialog dlg(qt_("Select LyX document to insert"), LFUN_FILE_INSERT);
1662         dlg.setButton1(qt_("Documents|#o#O"), toqstr(lyxrc.document_path));
1663         dlg.setButton2(qt_("Examples|#E#e"),
1664                 toqstr(addPath(package().system_support().absFilename(),
1665                 "examples")));
1666
1667         FileDialog::Result result = dlg.open(toqstr(initpath),
1668                              QStringList(qt_("LyX Documents (*.lyx)")));
1669
1670         if (result.first == FileDialog::Later)
1671                 return;
1672
1673         // FIXME UNICODE
1674         filename.set(fromqstr(result.second));
1675
1676         // check selected filename
1677         if (filename.empty()) {
1678                 // emit message signal.
1679                 message(_("Canceled."));
1680                 return;
1681         }
1682
1683         bv->insertLyXFile(filename);
1684 }
1685
1686
1687 void GuiView::insertPlaintextFile(docstring const & fname,
1688         bool asParagraph)
1689 {
1690         BufferView * bv = view();
1691         if (!bv)
1692                 return;
1693
1694         if (!fname.empty() && !FileName::isAbsolute(to_utf8(fname))) {
1695                 message(_("Absolute filename expected."));
1696                 return;
1697         }
1698
1699         // FIXME UNICODE
1700         FileName filename(to_utf8(fname));
1701         
1702         if (!filename.empty()) {
1703                 bv->insertPlaintextFile(filename, asParagraph);
1704                 return;
1705         }
1706
1707         FileDialog dlg(qt_("Select file to insert"), (asParagraph ?
1708                 LFUN_FILE_INSERT_PLAINTEXT_PARA : LFUN_FILE_INSERT_PLAINTEXT));
1709
1710         FileDialog::Result result = dlg.open(toqstr(bv->buffer().filePath()),
1711                 QStringList(qt_("All Files (*)")));
1712
1713         if (result.first == FileDialog::Later)
1714                 return;
1715
1716         // FIXME UNICODE
1717         filename.set(fromqstr(result.second));
1718
1719         // check selected filename
1720         if (filename.empty()) {
1721                 // emit message signal.
1722                 message(_("Canceled."));
1723                 return;
1724         }
1725
1726         bv->insertPlaintextFile(filename, asParagraph);
1727 }
1728
1729
1730 bool GuiView::renameBuffer(Buffer & b, docstring const & newname)
1731 {
1732         FileName fname = b.fileName();
1733         FileName const oldname = fname;
1734
1735         if (!newname.empty()) {
1736                 // FIXME UNICODE
1737                 fname = support::makeAbsPath(to_utf8(newname), oldname.onlyPath().absFilename());
1738         } else {
1739                 // Switch to this Buffer.
1740                 setBuffer(&b);
1741
1742                 // No argument? Ask user through dialog.
1743                 // FIXME UNICODE
1744                 FileDialog dlg(qt_("Choose a filename to save document as"),
1745                                    LFUN_BUFFER_WRITE_AS);
1746                 dlg.setButton1(qt_("Documents|#o#O"), toqstr(lyxrc.document_path));
1747                 dlg.setButton2(qt_("Templates|#T#t"), toqstr(lyxrc.template_path));
1748
1749                 if (!isLyXFilename(fname.absFilename()))
1750                         fname.changeExtension(".lyx");
1751
1752                 FileDialog::Result result =
1753                         dlg.save(toqstr(fname.onlyPath().absFilename()),
1754                                QStringList(qt_("LyX Documents (*.lyx)")),
1755                                      toqstr(fname.onlyFileName()));
1756
1757                 if (result.first == FileDialog::Later)
1758                         return false;
1759
1760                 fname.set(fromqstr(result.second));
1761
1762                 if (fname.empty())
1763                         return false;
1764
1765                 if (!isLyXFilename(fname.absFilename()))
1766                         fname.changeExtension(".lyx");
1767         }
1768
1769         if (FileName(fname).exists()) {
1770                 docstring const file = makeDisplayPath(fname.absFilename(), 30);
1771                 docstring text = bformat(_("The document %1$s already "
1772                                            "exists.\n\nDo you want to "
1773                                            "overwrite that document?"), 
1774                                          file);
1775                 int const ret = Alert::prompt(_("Overwrite document?"),
1776                         text, 0, 2, _("&Overwrite"), _("&Rename"), _("&Cancel"));
1777                 switch (ret) {
1778                 case 0: break;
1779                 case 1: return renameBuffer(b, docstring());
1780                 case 2: return false;
1781                 }
1782         }
1783
1784         FileName oldauto = b.getAutosaveFilename();
1785
1786         // Ok, change the name of the buffer
1787         b.setFileName(fname.absFilename());
1788         b.markDirty();
1789         bool unnamed = b.isUnnamed();
1790         b.setUnnamed(false);
1791         b.saveCheckSum(fname);
1792
1793         // bring the autosave file with us, just in case.
1794         b.moveAutosaveFile(oldauto);
1795         
1796         if (!saveBuffer(b)) {
1797                 oldauto = b.getAutosaveFilename();
1798                 b.setFileName(oldname.absFilename());
1799                 b.setUnnamed(unnamed);
1800                 b.saveCheckSum(oldname);
1801                 b.moveAutosaveFile(oldauto);
1802                 return false;
1803         }
1804
1805         return true;
1806 }
1807
1808
1809 bool GuiView::saveBuffer(Buffer & b)
1810 {
1811         if (workArea(b) && workArea(b)->inDialogMode())
1812                 return true;
1813
1814         if (b.isUnnamed())
1815                 return renameBuffer(b, docstring());
1816
1817         if (b.save()) {
1818                 theSession().lastFiles().add(b.fileName());
1819                 return true;
1820         }
1821
1822         // Switch to this Buffer.
1823         setBuffer(&b);
1824
1825         // FIXME: we don't tell the user *WHY* the save failed !!
1826         docstring const file = makeDisplayPath(b.absFileName(), 30);
1827         docstring text = bformat(_("The document %1$s could not be saved.\n\n"
1828                                    "Do you want to rename the document and "
1829                                    "try again?"), file);
1830         int const ret = Alert::prompt(_("Rename and save?"),
1831                 text, 0, 2, _("&Rename"), _("&Retry"), _("&Cancel"));
1832         switch (ret) {
1833         case 0:
1834                 if (!renameBuffer(b, docstring()))
1835                         return false;
1836                 break;
1837         case 1:
1838                 break;
1839         case 2:
1840                 return false;
1841         }
1842
1843         return saveBuffer(b);
1844 }
1845
1846
1847 bool GuiView::hideWorkArea(GuiWorkArea * wa)
1848 {
1849         return closeWorkArea(wa, false);
1850 }
1851
1852
1853 bool GuiView::closeWorkArea(GuiWorkArea * wa)
1854 {
1855         Buffer & buf = wa->bufferView().buffer();
1856         return closeWorkArea(wa, !buf.parent());
1857 }
1858
1859
1860 bool GuiView::closeBuffer()
1861 {
1862         GuiWorkArea * wa = currentMainWorkArea();
1863         Buffer & buf = wa->bufferView().buffer();
1864         return wa && closeWorkArea(wa, !buf.parent());
1865 }
1866
1867
1868 void GuiView::writeSession() const {
1869         GuiWorkArea const * active_wa = currentMainWorkArea();
1870         for (int i = 0; i < d.splitter_->count(); ++i) {
1871                 TabWorkArea * twa = d.tabWorkArea(i);
1872                 for (int j = 0; j < twa->count(); ++j) {
1873                         GuiWorkArea * wa = static_cast<GuiWorkArea *>(twa->widget(j));
1874                         Buffer & buf = wa->bufferView().buffer();
1875                         theSession().lastOpened().add(buf.fileName(), wa == active_wa);
1876                 }
1877         }
1878 }
1879
1880
1881 bool GuiView::closeBufferAll()
1882 {
1883         // Close the workareas in all other views
1884         QList<int> const ids = guiApp->viewIds();
1885         for (int i = 0; i != ids.size(); ++i) {
1886                 if (id_ != ids[i] && !guiApp->view(ids[i]).closeWorkAreaAll())
1887                         return false;
1888         }
1889
1890         // Close our own workareas
1891         if (!closeWorkAreaAll())
1892                 return false;
1893
1894         // Now close the hidden buffers. We prevent hidden buffers from being
1895         // dirty, so we can just close them.
1896         theBufferList().closeAll();
1897         return true;
1898 }
1899
1900
1901 bool GuiView::closeWorkAreaAll()
1902 {
1903         // To write in the session file which workarea was active.
1904         GuiWorkArea * active_wa = currentMainWorkArea();
1905         setCurrentWorkArea(active_wa);
1906
1907         // We might be in a situation that there is still a tabWorkArea, but
1908         // there are no tabs anymore. This can happen when we get here after a 
1909         // TabWorkArea::lastWorkAreaRemoved() signal. Therefore we count how
1910         // many TabWorkArea's have no documents anymore.
1911         int empty_twa = 0;
1912
1913         // We have to call count() each time, because it can happen that
1914         // more than one splitter will disappear in one iteration (bug 5998).
1915         for (; d.splitter_->count() > empty_twa; ) {
1916                 TabWorkArea * twa = d.tabWorkArea(empty_twa);
1917
1918                 if (twa->count() == 0)
1919                         ++empty_twa;
1920                 else {
1921                         setCurrentWorkArea(twa->currentWorkArea());
1922                         if (!closeTabWorkArea(twa, active_wa))
1923                                 return false;
1924                 }
1925         }
1926         return true;
1927 }
1928
1929
1930 bool GuiView::closeWorkArea(GuiWorkArea * wa, bool close_buffer,
1931         bool)
1932 {
1933         Buffer & buf = wa->bufferView().buffer();
1934
1935         // If we are in a close_event all children will be closed in some time,
1936         // so no need to do it here. This will ensure that the children end up
1937         // in the session file in the correct order. If we close the master
1938         // buffer, we can close or release the child buffers here too.
1939         if (close_buffer && !closing_) {
1940                 vector<Buffer *> clist = buf.getChildren();
1941                 for (vector<Buffer *>::const_iterator it = clist.begin();
1942                          it != clist.end(); ++it) {
1943                         // If a child is dirty, do not close
1944                         // without user intervention
1945                         //FIXME: should we look in other tabworkareas?
1946                         Buffer * child_buf = *it;
1947                         GuiWorkArea * child_wa = workArea(*child_buf);
1948                         if (child_wa) {
1949                                 if (!closeWorkArea(child_wa, true))
1950                                         return false;
1951                         } else
1952                                 theBufferList().releaseChild(&buf, child_buf);
1953                 }
1954         }
1955         // goto bookmark to update bookmark pit.
1956         //FIXME: we should update only the bookmarks related to this buffer!
1957         LYXERR(Debug::DEBUG, "GuiView::closeBuffer()");
1958         for (size_t i = 0; i < theSession().bookmarks().size(); ++i)
1959                 theLyXFunc().gotoBookmark(i+1, false, false);
1960
1961         // if we are only hiding the buffer and there are multiple views
1962         // of the buffer, then we do not need to ensure a clean buffer.
1963         bool const allow_dirty = inMultiTabs(wa) && !close_buffer;
1964
1965         if (allow_dirty || saveBufferIfNeeded(buf, !close_buffer)) {
1966                 // save in sessions if requested
1967                 // do not save childs if their master
1968                 // is opened as well
1969                 if (!close_buffer)
1970                         removeWorkArea(wa);
1971                 else
1972                         theBufferList().release(&buf);
1973                 return true;
1974         }
1975         return false;
1976 }
1977
1978
1979 bool GuiView::closeTabWorkArea(TabWorkArea * twa, GuiWorkArea * main_work_area)
1980 {
1981         while (twa == d.currentTabWorkArea()) {
1982                 twa->setCurrentIndex(twa->count()-1);
1983
1984                 GuiWorkArea * wa = twa->currentWorkArea();
1985                 bool const is_active_wa = main_work_area == wa;
1986                 Buffer & b = wa->bufferView().buffer();
1987
1988                 // We only want to close the buffer if the same buffer is not visible
1989                 // in another view, and if this is not a child and if we are closing
1990                 // a view (not a tabgroup).
1991                 bool const close_buffer = 
1992                         !inMultiViews(wa) && !b.parent() && closing_;
1993
1994                 if (!closeWorkArea(wa, close_buffer, is_active_wa))
1995                         return false;
1996         }
1997         return true;
1998 }
1999
2000
2001 bool GuiView::saveBufferIfNeeded(Buffer & buf, bool hiding)
2002 {
2003         if (buf.isClean() || buf.paragraphs().empty())
2004                 return true;
2005
2006         // Switch to this Buffer.
2007         setBuffer(&buf);
2008
2009         docstring file;
2010         // FIXME: Unicode?
2011         if (buf.isUnnamed())
2012                 file = from_utf8(buf.fileName().onlyFileName());
2013         else
2014                 file = buf.fileName().displayName(30);
2015
2016         // Bring this window to top before asking questions.
2017         raise();
2018         activateWindow();
2019
2020         int ret;
2021         if (hiding && buf.isUnnamed()) {
2022                 docstring const text = bformat(_("The document %1$s has not been "
2023                                              "saved yet.\n\nDo you want to save "
2024                                              "the document?"), file);
2025                 ret = Alert::prompt(_("Save new document?"), 
2026                         text, 0, 1, _("&Save"), _("&Cancel"));
2027                 if (ret == 1)
2028                         ++ret;
2029         } else {
2030                 docstring const text = bformat(_("The document %1$s has unsaved changes."
2031                         "\n\nDo you want to save the document or discard the changes?"), file);
2032                 ret = Alert::prompt(_("Save changed document?"),
2033                         text, 0, 2, _("&Save"), _("&Discard"), _("&Cancel"));
2034         }
2035
2036         switch (ret) {
2037         case 0:
2038                 if (!saveBuffer(buf))
2039                         return false;
2040                 break;
2041         case 1:
2042                 // if we crash after this we could
2043                 // have no autosave file but I guess
2044                 // this is really improbable (Jug)
2045                 buf.removeAutosaveFile();
2046                 if (hiding)
2047                         // revert all changes
2048                         buf.loadLyXFile(buf.fileName());
2049                 buf.markClean();
2050                 break;
2051         case 2:
2052                 return false;
2053         }
2054         return true;
2055 }
2056
2057
2058 bool GuiView::inMultiTabs(GuiWorkArea * wa)
2059 {
2060         Buffer & buf = wa->bufferView().buffer();
2061
2062         for (int i = 0; i != d.splitter_->count(); ++i) {
2063                 GuiWorkArea * wa_ = d.tabWorkArea(i)->workArea(buf);
2064                 if (wa_ && wa_ != wa)
2065                         return true;
2066         }
2067         return inMultiViews(wa);
2068 }
2069
2070
2071 bool GuiView::inMultiViews(GuiWorkArea * wa)
2072 {
2073         QList<int> const ids = guiApp->viewIds();
2074         Buffer & buf = wa->bufferView().buffer();
2075
2076         int found_twa = 0;
2077         for (int i = 0; i != ids.size() && found_twa <= 1; ++i) {
2078                 if (id_ == ids[i])
2079                         continue;
2080                 
2081                 if (guiApp->view(ids[i]).workArea(buf))
2082                         return true;
2083         }
2084         return false;
2085 }
2086
2087
2088 void GuiView::gotoNextOrPreviousBuffer(NextOrPrevious np)
2089 {
2090         Buffer * const curbuf = buffer();
2091         Buffer * nextbuf = curbuf;
2092         while (true) {
2093                 if (np == NEXTBUFFER)
2094                         nextbuf = theBufferList().next(nextbuf);
2095                 else
2096                         nextbuf = theBufferList().previous(nextbuf);
2097                 if (nextbuf == curbuf)
2098                         break;
2099                 if (nextbuf == 0) {
2100                         nextbuf = curbuf;
2101                         break;
2102                 }
2103                 if (workArea(*nextbuf))
2104                         break;
2105         }
2106         setBuffer(nextbuf);
2107 }
2108
2109
2110 bool GuiView::dispatch(FuncRequest const & cmd)
2111 {
2112         BufferView * bv = view();
2113         // By default we won't need any update.
2114         if (bv)
2115                 bv->cursor().updateFlags(Update::None);
2116         bool dispatched = true;
2117
2118         if (cmd.origin == FuncRequest::TOC) {
2119                 GuiToc * toc = static_cast<GuiToc*>(findOrBuild("toc", false));
2120                 toc->doDispatch(bv->cursor(), cmd);
2121                 return true;
2122         }
2123
2124         switch(cmd.action) {
2125                 case LFUN_BUFFER_IMPORT:
2126                         importDocument(to_utf8(cmd.argument()));
2127                         break;
2128
2129                 case LFUN_BUFFER_SWITCH:
2130                         if (FileName::isAbsolute(to_utf8(cmd.argument()))) {
2131                                 Buffer * buffer = 
2132                                         theBufferList().getBuffer(FileName(to_utf8(cmd.argument())));
2133                                 if (buffer)
2134                                         setBuffer(buffer);
2135                                 else
2136                                         bv->cursor().message(_("Document not loaded"));
2137                         }
2138                         break;
2139
2140                 case LFUN_BUFFER_NEXT:
2141                         gotoNextOrPreviousBuffer(NEXTBUFFER);
2142                         break;
2143
2144                 case LFUN_BUFFER_PREVIOUS:
2145                         gotoNextOrPreviousBuffer(PREVBUFFER);
2146                         break;
2147
2148                 case LFUN_COMMAND_EXECUTE: {
2149                         bool const show_it = cmd.argument() != "off";
2150                         // FIXME: this is a hack, "minibuffer" should not be
2151                         // hardcoded.
2152                         if (GuiToolbar * t = toolbar("minibuffer")) {
2153                                 t->setVisible(show_it);
2154                                 if (show_it && t->commandBuffer())
2155                                         t->commandBuffer()->setFocus();
2156                         }
2157                         break;
2158                 }
2159                 case LFUN_DROP_LAYOUTS_CHOICE:
2160                         d.layout_->showPopup();
2161                         break;
2162
2163                 case LFUN_MENU_OPEN:
2164                         if (QMenu * menu = guiApp->menus().menu(toqstr(cmd.argument()), *this))
2165                                 menu->exec(QCursor::pos());
2166                         break;
2167
2168                 case LFUN_FILE_INSERT:
2169                         insertLyXFile(cmd.argument());
2170                         break;
2171                 case LFUN_FILE_INSERT_PLAINTEXT_PARA:
2172                         insertPlaintextFile(cmd.argument(), true);
2173                         break;
2174
2175                 case LFUN_FILE_INSERT_PLAINTEXT:
2176                         insertPlaintextFile(cmd.argument(), false);
2177                         break;
2178
2179                 case LFUN_BUFFER_WRITE:
2180                         if (bv)
2181                                 saveBuffer(bv->buffer());
2182                         break;
2183
2184                 case LFUN_BUFFER_WRITE_AS:
2185                         if (bv)
2186                                 renameBuffer(bv->buffer(), cmd.argument());
2187                         break;
2188
2189                 case LFUN_BUFFER_WRITE_ALL: {
2190                         Buffer * first = theBufferList().first();
2191                         if (!first)
2192                                 break;
2193                         message(_("Saving all documents..."));
2194                         // We cannot use a for loop as the buffer list cycles.
2195                         Buffer * b = first;
2196                         do {
2197                                 if (!b->isClean()) {
2198                                         saveBuffer(*b);
2199                                         LYXERR(Debug::ACTION, "Saved " << b->absFileName());
2200                                 }
2201                                 b = theBufferList().next(b);
2202                         } while (b != first); 
2203                         message(_("All documents saved."));
2204                         break;
2205                 }
2206
2207                 case LFUN_TOOLBAR_TOGGLE: {
2208                         string const name = cmd.getArg(0);
2209                         if (GuiToolbar * t = toolbar(name))
2210                                 t->toggle();
2211                         break;
2212                 }
2213
2214                 case LFUN_DIALOG_UPDATE: {
2215                         string const name = to_utf8(cmd.argument());
2216                         // Can only update a dialog connected to an existing inset
2217                         Inset * inset = getOpenInset(name);
2218                         if (inset) {
2219                                 FuncRequest fr(LFUN_INSET_DIALOG_UPDATE, cmd.argument());
2220                                 inset->dispatch(view()->cursor(), fr);
2221                         } else if (name == "paragraph") {
2222                                 lyx::dispatch(FuncRequest(LFUN_PARAGRAPH_UPDATE));
2223                         } else if (name == "prefs" || name == "document") {
2224                                 updateDialog(name, string());
2225                         }
2226                         break;
2227                 }
2228
2229                 case LFUN_DIALOG_TOGGLE: {
2230                         if (isDialogVisible(cmd.getArg(0)))
2231                                 dispatch(FuncRequest(LFUN_DIALOG_HIDE, cmd.argument()));
2232                         else
2233                                 dispatch(FuncRequest(LFUN_DIALOG_SHOW, cmd.argument()));
2234                         break;
2235                 }
2236
2237                 case LFUN_DIALOG_DISCONNECT_INSET:
2238                         disconnectDialog(to_utf8(cmd.argument()));
2239                         break;
2240
2241                 case LFUN_DIALOG_HIDE: {
2242                         guiApp->hideDialogs(to_utf8(cmd.argument()), 0);
2243                         break;
2244                 }
2245
2246                 case LFUN_DIALOG_SHOW: {
2247                         string const name = cmd.getArg(0);
2248                         string data = trim(to_utf8(cmd.argument()).substr(name.size()));
2249
2250                         if (name == "character") {
2251                                 data = freefont2string();
2252                                 if (!data.empty())
2253                                         showDialog("character", data);
2254                         } else if (name == "latexlog") {
2255                                 Buffer::LogType type; 
2256                                 string const logfile = buffer()->logName(&type);
2257                                 switch (type) {
2258                                 case Buffer::latexlog:
2259                                         data = "latex ";
2260                                         break;
2261                                 case Buffer::buildlog:
2262                                         data = "literate ";
2263                                         break;
2264                                 }
2265                                 data += Lexer::quoteString(logfile);
2266                                 showDialog("log", data);
2267                         } else if (name == "vclog") {
2268                                 string const data = "vc " +
2269                                         Lexer::quoteString(buffer()->lyxvc().getLogFile());
2270                                 showDialog("log", data);
2271                         } else if (name == "symbols") {
2272                                 data = bv->cursor().getEncoding()->name();
2273                                 if (!data.empty())
2274                                         showDialog("symbols", data);
2275                         // bug 5274
2276                         } else if (name == "prefs" && isFullScreen()) {
2277                                 FuncRequest fr(LFUN_INSET_INSERT, "fullscreen");
2278                                 lfunUiToggle(fr);
2279                                 showDialog("prefs", data);
2280                         } else
2281                                 showDialog(name, data);
2282                         break;
2283                 }
2284
2285                 case LFUN_INSET_APPLY: {
2286                         string const name = cmd.getArg(0);
2287                         Inset * inset = getOpenInset(name);
2288                         if (inset) {
2289                                 // put cursor in front of inset.
2290                                 if (!view()->setCursorFromInset(inset)) {
2291                                         LASSERT(false, break);
2292                                 }
2293                                 
2294                                 // useful if we are called from a dialog.
2295                                 view()->cursor().beginUndoGroup();
2296                                 view()->cursor().recordUndo();
2297                                 FuncRequest fr(LFUN_INSET_MODIFY, cmd.argument());
2298                                 inset->dispatch(view()->cursor(), fr);
2299                                 view()->cursor().endUndoGroup();
2300                         } else {
2301                                 FuncRequest fr(LFUN_INSET_INSERT, cmd.argument());
2302                                 lyx::dispatch(fr);
2303                         }
2304                         break;
2305                 }
2306
2307                 case LFUN_UI_TOGGLE:
2308                         lfunUiToggle(cmd);
2309                         // Make sure the keyboard focus stays in the work area.
2310                         setFocus();
2311                         break;
2312
2313                 case LFUN_SPLIT_VIEW:
2314                         if (Buffer * buf = buffer()) {
2315                                 string const orientation = cmd.getArg(0);
2316                                 d.splitter_->setOrientation(orientation == "vertical"
2317                                         ? Qt::Vertical : Qt::Horizontal);
2318                                 TabWorkArea * twa = addTabWorkArea();
2319                                 GuiWorkArea * wa = twa->addWorkArea(*buf, *this);
2320                                 setCurrentWorkArea(wa);
2321                         }
2322                         break;
2323
2324                 case LFUN_CLOSE_TAB_GROUP:
2325                         if (TabWorkArea * twa = d.currentTabWorkArea()) {
2326                                 closeTabWorkArea(twa, false);
2327                                 d.current_work_area_ = 0;
2328                                 twa = d.currentTabWorkArea();
2329                                 // Switch to the next GuiWorkArea in the found TabWorkArea.
2330                                 if (twa) {
2331                                         // Make sure the work area is up to date.
2332                                         setCurrentWorkArea(twa->currentWorkArea());
2333                                 } else {
2334                                         setCurrentWorkArea(0);
2335                                 }
2336                         }
2337                         break;
2338                         
2339                 case LFUN_COMPLETION_INLINE:
2340                         if (d.current_work_area_)
2341                                 d.current_work_area_->completer().showInline();
2342                         break;
2343
2344                 case LFUN_COMPLETION_POPUP:
2345                         if (d.current_work_area_)
2346                                 d.current_work_area_->completer().showPopup();
2347                         break;
2348
2349
2350                 case LFUN_COMPLETION_COMPLETE:
2351                         if (d.current_work_area_)
2352                                 d.current_work_area_->completer().tab();
2353                         break;
2354
2355                 case LFUN_COMPLETION_CANCEL:
2356                         if (d.current_work_area_) {
2357                                 if (d.current_work_area_->completer().popupVisible())
2358                                         d.current_work_area_->completer().hidePopup();
2359                                 else
2360                                         d.current_work_area_->completer().hideInline();
2361                         }
2362                         break;
2363
2364                 case LFUN_COMPLETION_ACCEPT:
2365                         if (d.current_work_area_)
2366                                 d.current_work_area_->completer().activate();
2367                         break;
2368
2369                 case LFUN_BUFFER_ZOOM_IN:
2370                 case LFUN_BUFFER_ZOOM_OUT:
2371                         if (cmd.argument().empty()) {
2372                                 if (cmd.action == LFUN_BUFFER_ZOOM_IN)
2373                                         lyxrc.zoom += 20;
2374                                 else
2375                                         lyxrc.zoom -= 20;
2376                         } else
2377                                 lyxrc.zoom += convert<int>(cmd.argument());
2378
2379                         if (lyxrc.zoom < 10)
2380                                 lyxrc.zoom = 10;
2381                                 
2382                         // The global QPixmapCache is used in GuiPainter to cache text
2383                         // painting so we must reset it.
2384                         QPixmapCache::clear();
2385                         guiApp->fontLoader().update();
2386                         lyx::dispatch(FuncRequest(LFUN_SCREEN_FONT_UPDATE));
2387                         break;
2388
2389                 default:
2390                         dispatched = false;
2391                         break;
2392         }
2393
2394         // Part of automatic menu appearance feature.
2395         if (isFullScreen()) {
2396                 if (menuBar()->isVisible() && lyxrc.full_screen_menubar)
2397                         menuBar()->hide();
2398                 if (statusBar()->isVisible())
2399                         statusBar()->hide();
2400         }
2401
2402         return dispatched;
2403 }
2404
2405
2406 void GuiView::lfunUiToggle(FuncRequest const & cmd)
2407 {
2408         string const arg = cmd.getArg(0);
2409         if (arg == "scrollbar") {
2410                 // hide() is of no help
2411                 if (d.current_work_area_->verticalScrollBarPolicy() ==
2412                         Qt::ScrollBarAlwaysOff)
2413
2414                         d.current_work_area_->setVerticalScrollBarPolicy(
2415                                 Qt::ScrollBarAsNeeded);
2416                 else
2417                         d.current_work_area_->setVerticalScrollBarPolicy(
2418                                 Qt::ScrollBarAlwaysOff);
2419                 return;
2420         }
2421         if (arg == "statusbar") {
2422                 statusBar()->setVisible(!statusBar()->isVisible());
2423                 return;
2424         }
2425         if (arg == "menubar") {
2426                 menuBar()->setVisible(!menuBar()->isVisible());
2427                 return;
2428         }
2429 #if QT_VERSION >= 0x040300
2430         if (arg == "frame") {
2431                 int l, t, r, b;
2432                 getContentsMargins(&l, &t, &r, &b);
2433                 //are the frames in default state?
2434                 d.current_work_area_->setFrameStyle(QFrame::NoFrame);
2435                 if (l == 0) {
2436                         setContentsMargins(-2, -2, -2, -2);
2437                 } else {
2438                         setContentsMargins(0, 0, 0, 0);
2439                 }
2440                 return;
2441         }
2442 #endif
2443         if (arg == "fullscreen") {
2444                 toggleFullScreen();
2445                 return;
2446         }
2447
2448         message(bformat("LFUN_UI_TOGGLE " + _("%1$s unknown command!"), from_utf8(arg)));
2449 }
2450
2451
2452 void GuiView::toggleFullScreen()
2453 {
2454         if (isFullScreen()) {
2455                 for (int i = 0; i != d.splitter_->count(); ++i)
2456                         d.tabWorkArea(i)->setFullScreen(false);
2457 #if QT_VERSION >= 0x040300
2458                 setContentsMargins(0, 0, 0, 0);
2459 #endif
2460                 setWindowState(windowState() ^ Qt::WindowFullScreen);
2461                 restoreLayout();
2462                 menuBar()->show();
2463                 statusBar()->show();
2464         } else {
2465                 // bug 5274
2466                 hideDialogs("prefs", 0);
2467                 for (int i = 0; i != d.splitter_->count(); ++i)
2468                         d.tabWorkArea(i)->setFullScreen(true);
2469 #if QT_VERSION >= 0x040300
2470                 setContentsMargins(-2, -2, -2, -2);
2471 #endif
2472                 saveLayout();
2473                 setWindowState(windowState() ^ Qt::WindowFullScreen);
2474                 statusBar()->hide();
2475                 if (lyxrc.full_screen_menubar)
2476                         menuBar()->hide();
2477                 if (lyxrc.full_screen_toolbars) {
2478                         ToolbarMap::iterator end = d.toolbars_.end();
2479                         for (ToolbarMap::iterator it = d.toolbars_.begin(); it != end; ++it)
2480                                 it->second->hide();
2481                 }
2482         }
2483
2484         // give dialogs like the TOC a chance to adapt
2485         updateDialogs();
2486 }
2487
2488
2489 Buffer const * GuiView::updateInset(Inset const * inset)
2490 {
2491         if (!d.current_work_area_)
2492                 return 0;
2493
2494         if (inset)
2495                 d.current_work_area_->scheduleRedraw();
2496
2497         return &d.current_work_area_->bufferView().buffer();
2498 }
2499
2500
2501 void GuiView::restartCursor()
2502 {
2503         /* When we move around, or type, it's nice to be able to see
2504          * the cursor immediately after the keypress.
2505          */
2506         if (d.current_work_area_)
2507                 d.current_work_area_->startBlinkingCursor();
2508
2509         // Take this occasion to update the other GUI elements.
2510         updateDialogs();
2511         updateStatusBar();
2512 }
2513
2514
2515 void GuiView::updateCompletion(Cursor & cur, bool start, bool keep)
2516 {
2517         if (d.current_work_area_)
2518                 d.current_work_area_->completer().updateVisibility(cur, start, keep);
2519 }
2520
2521 namespace {
2522
2523 // This list should be kept in sync with the list of insets in
2524 // src/insets/Inset.cpp.  I.e., if a dialog goes with an inset, the
2525 // dialog should have the same name as the inset.
2526 // Changes should be also recorded in LFUN_DIALOG_SHOW doxygen
2527 // docs in LyXAction.cpp.
2528
2529 char const * const dialognames[] = {
2530 "aboutlyx", "bibitem", "bibtex", "box", "branch", "changes", "character",
2531 "citation", "document", "errorlist", "ert", "external", "file", "findreplace",
2532 "findreplaceadv", "float", "graphics", "href", "include", "index",
2533 "index_print", "info", "listings", "label", "log", "mathdelimiter",
2534 "mathmatrix", "mathspace", "nomenclature", "nomencl_print", "note",
2535 "paragraph", "phantom", "prefs", "print", "ref", "sendto", "space",
2536 "spellchecker", "symbols", "tabular", "tabularcreate", "thesaurus", "texinfo",
2537 "toc", "view-source", "vspace", "wrap" };
2538
2539 char const * const * const end_dialognames =
2540         dialognames + (sizeof(dialognames) / sizeof(char *));
2541
2542 class cmpCStr {
2543 public:
2544         cmpCStr(char const * name) : name_(name) {}
2545         bool operator()(char const * other) {
2546                 return strcmp(other, name_) == 0;
2547         }
2548 private:
2549         char const * name_;
2550 };
2551
2552
2553 bool isValidName(string const & name)
2554 {
2555         return find_if(dialognames, end_dialognames,
2556                             cmpCStr(name.c_str())) != end_dialognames;
2557 }
2558
2559 } // namespace anon
2560
2561
2562 void GuiView::resetDialogs()
2563 {
2564         // Make sure that no LFUN uses any LyXView.
2565         theLyXFunc().setLyXView(0);
2566         saveLayout();
2567         menuBar()->clear();
2568         constructToolbars();
2569         guiApp->menus().fillMenuBar(menuBar(), this, false);
2570         d.layout_->updateContents(true);
2571         // Now update controls with current buffer.
2572         theLyXFunc().setLyXView(this);
2573         restoreLayout();
2574         restartCursor();
2575 }
2576
2577
2578 Dialog * GuiView::findOrBuild(string const & name, bool hide_it)
2579 {
2580         if (!isValidName(name))
2581                 return 0;
2582
2583         map<string, DialogPtr>::iterator it = d.dialogs_.find(name);
2584
2585         if (it != d.dialogs_.end()) {
2586                 if (hide_it)
2587                         it->second->hideView();
2588                 return it->second.get();
2589         }
2590
2591         Dialog * dialog = build(name);
2592         d.dialogs_[name].reset(dialog);
2593         if (lyxrc.allow_geometry_session)
2594                 dialog->restoreSession();
2595         if (hide_it)
2596                 dialog->hideView();
2597         return dialog;
2598 }
2599
2600
2601 void GuiView::showDialog(string const & name, string const & data,
2602         Inset * inset)
2603 {
2604         if (d.in_show_)
2605                 return;
2606
2607         d.in_show_ = true;
2608         try {
2609                 Dialog * dialog = findOrBuild(name, false);
2610                 if (dialog) {
2611                         dialog->showData(data);
2612                         if (inset)
2613                                 d.open_insets_[name] = inset;
2614                 }
2615         }
2616         catch (ExceptionMessage const & ex) {
2617                 d.in_show_ = false;
2618                 throw ex;
2619         }
2620         d.in_show_ = false;
2621 }
2622
2623
2624 bool GuiView::isDialogVisible(string const & name) const
2625 {
2626         map<string, DialogPtr>::const_iterator it = d.dialogs_.find(name);
2627         if (it == d.dialogs_.end())
2628                 return false;
2629         return it->second.get()->isVisibleView() && !it->second.get()->isClosing();
2630 }
2631
2632
2633 void GuiView::hideDialog(string const & name, Inset * inset)
2634 {
2635         map<string, DialogPtr>::const_iterator it = d.dialogs_.find(name);
2636         if (it == d.dialogs_.end())
2637                 return;
2638
2639         if (inset && inset != getOpenInset(name))
2640                 return;
2641
2642         Dialog * const dialog = it->second.get();
2643         if (dialog->isVisibleView())
2644                 dialog->hideView();
2645         d.open_insets_[name] = 0;
2646 }
2647
2648
2649 void GuiView::disconnectDialog(string const & name)
2650 {
2651         if (!isValidName(name))
2652                 return;
2653
2654         if (d.open_insets_.find(name) != d.open_insets_.end())
2655                 d.open_insets_[name] = 0;
2656 }
2657
2658
2659 Inset * GuiView::getOpenInset(string const & name) const
2660 {
2661         if (!isValidName(name))
2662                 return 0;
2663
2664         map<string, Inset *>::const_iterator it = d.open_insets_.find(name);
2665         return it == d.open_insets_.end() ? 0 : it->second;
2666 }
2667
2668
2669 void GuiView::hideAll() const
2670 {
2671         map<string, DialogPtr>::const_iterator it  = d.dialogs_.begin();
2672         map<string, DialogPtr>::const_iterator end = d.dialogs_.end();
2673
2674         for(; it != end; ++it)
2675                 it->second->hideView();
2676 }
2677
2678
2679 void GuiView::updateDialogs()
2680 {
2681         map<string, DialogPtr>::const_iterator it  = d.dialogs_.begin();
2682         map<string, DialogPtr>::const_iterator end = d.dialogs_.end();
2683
2684         for(; it != end; ++it) {
2685                 Dialog * dialog = it->second.get();
2686                 if (dialog && dialog->isVisibleView())
2687                         dialog->checkStatus();
2688         }
2689         updateToolbars();
2690         updateLayoutList();
2691 }
2692
2693
2694 // will be replaced by a proper factory...
2695 Dialog * createGuiAbout(GuiView & lv);
2696 Dialog * createGuiBibitem(GuiView & lv);
2697 Dialog * createGuiBibtex(GuiView & lv);
2698 Dialog * createGuiBox(GuiView & lv);
2699 Dialog * createGuiBranch(GuiView & lv);
2700 Dialog * createGuiChanges(GuiView & lv);
2701 Dialog * createGuiCharacter(GuiView & lv);
2702 Dialog * createGuiCitation(GuiView & lv);
2703 Dialog * createGuiDelimiter(GuiView & lv);
2704 Dialog * createGuiDocument(GuiView & lv);
2705 Dialog * createGuiErrorList(GuiView & lv);
2706 Dialog * createGuiERT(GuiView & lv);
2707 Dialog * createGuiExternal(GuiView & lv);
2708 Dialog * createGuiFloat(GuiView & lv);
2709 Dialog * createGuiGraphics(GuiView & lv);
2710 Dialog * createGuiInclude(GuiView & lv);
2711 Dialog * createGuiIndex(GuiView & lv);
2712 Dialog * createGuiInfo(GuiView & lv);
2713 Dialog * createGuiLabel(GuiView & lv);
2714 Dialog * createGuiListings(GuiView & lv);
2715 Dialog * createGuiLog(GuiView & lv);
2716 Dialog * createGuiMathHSpace(GuiView & lv);
2717 Dialog * createGuiMathMatrix(GuiView & lv);
2718 Dialog * createGuiNomenclature(GuiView & lv);
2719 Dialog * createGuiNote(GuiView & lv);
2720 Dialog * createGuiParagraph(GuiView & lv);
2721 Dialog * createGuiPhantom(GuiView & lv);
2722 Dialog * createGuiPreferences(GuiView & lv);
2723 Dialog * createGuiPrint(GuiView & lv);
2724 Dialog * createGuiPrintindex(GuiView & lv);
2725 Dialog * createGuiPrintNomencl(GuiView & lv);
2726 Dialog * createGuiRef(GuiView & lv);
2727 Dialog * createGuiSearch(GuiView & lv);
2728 Dialog * createGuiSearchAdv(GuiView & lv);
2729 Dialog * createGuiSendTo(GuiView & lv);
2730 Dialog * createGuiShowFile(GuiView & lv);
2731 Dialog * createGuiSpellchecker(GuiView & lv);
2732 Dialog * createGuiSymbols(GuiView & lv);
2733 Dialog * createGuiTabularCreate(GuiView & lv);
2734 Dialog * createGuiTabular(GuiView & lv);
2735 Dialog * createGuiTexInfo(GuiView & lv);
2736 Dialog * createGuiTextHSpace(GuiView & lv);
2737 Dialog * createGuiToc(GuiView & lv);
2738 Dialog * createGuiThesaurus(GuiView & lv);
2739 Dialog * createGuiHyperlink(GuiView & lv);
2740 Dialog * createGuiVSpace(GuiView & lv);
2741 Dialog * createGuiViewSource(GuiView & lv);
2742 Dialog * createGuiWrap(GuiView & lv);
2743
2744
2745 Dialog * GuiView::build(string const & name)
2746 {
2747         LASSERT(isValidName(name), return 0);
2748
2749         if (name == "aboutlyx")
2750                 return createGuiAbout(*this);
2751         if (name == "bibitem")
2752                 return createGuiBibitem(*this);
2753         if (name == "bibtex")
2754                 return createGuiBibtex(*this);
2755         if (name == "box")
2756                 return createGuiBox(*this);
2757         if (name == "branch")
2758                 return createGuiBranch(*this);
2759         if (name == "changes")
2760                 return createGuiChanges(*this);
2761         if (name == "character")
2762                 return createGuiCharacter(*this);
2763         if (name == "citation")
2764                 return createGuiCitation(*this);
2765         if (name == "document")
2766                 return createGuiDocument(*this);
2767         if (name == "errorlist")
2768                 return createGuiErrorList(*this);
2769         if (name == "ert")
2770                 return createGuiERT(*this);
2771         if (name == "external")
2772                 return createGuiExternal(*this);
2773         if (name == "file")
2774                 return createGuiShowFile(*this);
2775         if (name == "findreplace")
2776                 return createGuiSearch(*this);
2777         if (name == "findreplaceadv")
2778                 return createGuiSearchAdv(*this);
2779         if (name == "float")
2780                 return createGuiFloat(*this);
2781         if (name == "graphics")
2782                 return createGuiGraphics(*this);
2783         if (name == "href")
2784                 return createGuiHyperlink(*this);
2785         if (name == "include")
2786                 return createGuiInclude(*this);
2787         if (name == "index")
2788                 return createGuiIndex(*this);
2789         if (name == "index_print")
2790                 return createGuiPrintindex(*this);
2791         if (name == "info")
2792                 return createGuiInfo(*this);
2793         if (name == "label")
2794                 return createGuiLabel(*this);
2795         if (name == "listings")
2796                 return createGuiListings(*this);
2797         if (name == "log")
2798                 return createGuiLog(*this);
2799         if (name == "mathdelimiter")
2800                 return createGuiDelimiter(*this);
2801         if (name == "mathspace")
2802                 return createGuiMathHSpace(*this);
2803         if (name == "mathmatrix")
2804                 return createGuiMathMatrix(*this);
2805         if (name == "nomenclature")
2806                 return createGuiNomenclature(*this);
2807         if (name == "nomencl_print")
2808                 return createGuiPrintNomencl(*this);
2809         if (name == "note")
2810                 return createGuiNote(*this);
2811         if (name == "paragraph")
2812                 return createGuiParagraph(*this);
2813         if (name == "phantom")
2814                 return createGuiPhantom(*this);
2815         if (name == "prefs")
2816                 return createGuiPreferences(*this);
2817         if (name == "print")
2818                 return createGuiPrint(*this);
2819         if (name == "ref")
2820                 return createGuiRef(*this);
2821         if (name == "sendto")
2822                 return createGuiSendTo(*this);
2823         if (name == "space")
2824                 return createGuiTextHSpace(*this);
2825         if (name == "spellchecker")
2826                 return createGuiSpellchecker(*this);
2827         if (name == "symbols")
2828                 return createGuiSymbols(*this);
2829         if (name == "tabular")
2830                 return createGuiTabular(*this);
2831         if (name == "tabularcreate")
2832                 return createGuiTabularCreate(*this);
2833         if (name == "texinfo")
2834                 return createGuiTexInfo(*this);
2835         if (name == "thesaurus")
2836                 return createGuiThesaurus(*this);
2837         if (name == "toc")
2838                 return createGuiToc(*this);
2839         if (name == "view-source")
2840                 return createGuiViewSource(*this);
2841         if (name == "vspace")
2842                 return createGuiVSpace(*this);
2843         if (name == "wrap")
2844                 return createGuiWrap(*this);
2845
2846         return 0;
2847 }
2848
2849
2850 } // namespace frontend
2851 } // namespace lyx
2852
2853 #include "moc_GuiView.cpp"