]> git.lyx.org Git - lyx.git/blob - src/frontends/qt4/GuiView.cpp
b09e9e309825bc06b75e34b49e77a28861055b8b
[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 Buffer * GuiView::documentBuffer()
1055 {
1056         TabWorkArea * twa = d.currentTabWorkArea();
1057         if (twa && twa->currentWorkArea())
1058                 return &twa->currentWorkArea()->bufferView().buffer();
1059         return 0;
1060 }
1061
1062
1063 Buffer const * GuiView::documentBuffer() const
1064 {
1065         TabWorkArea * twa = d.currentTabWorkArea();
1066         if (twa && twa->currentWorkArea())
1067                 return &twa->currentWorkArea()->bufferView().buffer();
1068         return 0;
1069 }
1070
1071
1072 void GuiView::setBuffer(Buffer * newBuffer)
1073 {
1074         LYXERR(Debug::DEBUG, "Setting buffer: " << newBuffer << std::endl);
1075         LASSERT(newBuffer, return);
1076         setBusy(true);
1077
1078         GuiWorkArea * wa = workArea(*newBuffer);
1079         if (wa == 0) {
1080                 newBuffer->masterBuffer()->updateLabels();
1081                 wa = addWorkArea(*newBuffer);
1082         } else {
1083                 //Disconnect the old buffer...there's no new one.
1084                 disconnectBuffer();
1085         }
1086         connectBuffer(*newBuffer);
1087         connectBufferView(wa->bufferView());
1088         setCurrentWorkArea(wa);
1089
1090         setBusy(false);
1091 }
1092
1093
1094 void GuiView::connectBuffer(Buffer & buf)
1095 {
1096         buf.setGuiDelegate(this);
1097 }
1098
1099
1100 void GuiView::disconnectBuffer()
1101 {
1102         if (d.current_work_area_)
1103                 d.current_work_area_->bufferView().buffer().setGuiDelegate(0);
1104 }
1105
1106
1107 void GuiView::connectBufferView(BufferView & bv)
1108 {
1109         bv.setGuiDelegate(this);
1110 }
1111
1112
1113 void GuiView::disconnectBufferView()
1114 {
1115         if (d.current_work_area_)
1116                 d.current_work_area_->bufferView().setGuiDelegate(0);
1117 }
1118
1119
1120 void GuiView::errors(string const & error_type, bool from_master)
1121 {
1122         ErrorList & el = from_master ? 
1123                 buffer()->masterBuffer()->errorList(error_type)
1124                 : buffer()->errorList(error_type);
1125         string data = error_type;
1126         if (from_master)
1127                 data = "from_master|" + error_type;
1128         if (!el.empty())
1129                 showDialog("errorlist", data);
1130 }
1131
1132
1133 void GuiView::updateTocItem(std::string const & type, DocIterator const & dit)
1134 {
1135         d.toc_models_.updateItem(toqstr(type), dit);
1136 }
1137
1138
1139 void GuiView::structureChanged()
1140 {
1141         d.toc_models_.reset(documentBufferView());
1142         // Navigator needs more than a simple update in this case. It needs to be
1143         // rebuilt.
1144         updateDialog("toc", "");
1145 }
1146
1147
1148 void GuiView::updateDialog(string const & name, string const & data)
1149 {
1150         if (!isDialogVisible(name))
1151                 return;
1152
1153         map<string, DialogPtr>::const_iterator it = d.dialogs_.find(name);
1154         if (it == d.dialogs_.end())
1155                 return;
1156
1157         Dialog * const dialog = it->second.get();
1158         if (dialog->isVisibleView())
1159                 dialog->initialiseParams(data);
1160 }
1161
1162
1163 BufferView * GuiView::documentBufferView()
1164 {
1165         return currentMainWorkArea()
1166                 ? &currentMainWorkArea()->bufferView()
1167                 : 0;
1168 }
1169
1170
1171 BufferView * GuiView::view()
1172 {
1173         return d.current_work_area_ ? &d.current_work_area_->bufferView() : 0;
1174 }
1175
1176
1177 void GuiView::autoSave()
1178 {
1179         LYXERR(Debug::INFO, "Running autoSave()");
1180
1181         if (buffer())
1182                 view()->buffer().autoSave();
1183 }
1184
1185
1186 void GuiView::resetAutosaveTimers()
1187 {
1188         if (lyxrc.autosave)
1189                 d.autosave_timeout_.restart();
1190 }
1191
1192
1193 bool GuiView::getStatus(FuncRequest const & cmd, FuncStatus & flag)
1194 {
1195         bool enable = true;
1196         Buffer * buf = buffer();
1197
1198         if (cmd.origin == FuncRequest::TOC) {
1199                 GuiToc * toc = static_cast<GuiToc*>(findOrBuild("toc", false));
1200                 FuncStatus fs;
1201                 if (toc->getStatus(view()->cursor(), cmd, fs))
1202                         flag |= fs;
1203                 else
1204                         flag.setEnabled(false);
1205                 return true;
1206         }
1207
1208         switch(cmd.action) {
1209         case LFUN_BUFFER_WRITE:
1210                 enable = buf && (buf->isUnnamed() || !buf->isClean());
1211                 break;
1212
1213         case LFUN_BUFFER_WRITE_AS:
1214                 enable = buf;
1215                 break;
1216
1217         case LFUN_BUFFER_CLOSE_ALL:
1218                 enable = theBufferList().last() != theBufferList().first();
1219                 break;
1220
1221         case LFUN_SPLIT_VIEW:
1222                 if (cmd.getArg(0) == "vertical")
1223                         enable = buf && (d.splitter_->count() == 1 ||
1224                                          d.splitter_->orientation() == Qt::Vertical);
1225                 else
1226                         enable = buf && (d.splitter_->count() == 1 ||
1227                                          d.splitter_->orientation() == Qt::Horizontal);
1228                 break;
1229
1230         case LFUN_CLOSE_TAB_GROUP:
1231                 enable = d.currentTabWorkArea();
1232                 break;
1233
1234         case LFUN_TOOLBAR_TOGGLE:
1235                 if (GuiToolbar * t = toolbar(cmd.getArg(0)))
1236                         flag.setOnOff(t->isVisible());
1237                 break;
1238
1239         case LFUN_UI_TOGGLE:
1240                 flag.setOnOff(isFullScreen());
1241                 break;
1242
1243         case LFUN_DIALOG_TOGGLE:
1244                 flag.setOnOff(isDialogVisible(cmd.getArg(0)));
1245                 // fall through to set "enable"
1246         case LFUN_DIALOG_SHOW: {
1247                 string const name = cmd.getArg(0);
1248                 if (!buf)
1249                         enable = name == "aboutlyx"
1250                                 || name == "file" //FIXME: should be removed.
1251                                 || name == "prefs"
1252                                 || name == "texinfo";
1253                 else if (name == "print")
1254                         enable = buf->isExportable("dvi")
1255                                 && lyxrc.print_command != "none";
1256                 else if (name == "character" || name == "symbols") {
1257                         if (buf->isReadonly() || !view() || !view()->cursor().inTexted())
1258                                 enable = false;
1259                         else {
1260                                 // FIXME we should consider passthru
1261                                 // paragraphs too.
1262                                 Inset const & in = view()->cursor().inset();
1263                                 enable = !in.getLayout().isPassThru();
1264                         }
1265                 }
1266                 else if (name == "latexlog")
1267                         enable = FileName(buf->logName()).isReadableFile();
1268                 else if (name == "spellchecker")
1269                         enable = theSpellChecker() && !buf->isReadonly();
1270                 else if (name == "vclog")
1271                         enable = buf->lyxvc().inUse();
1272                 break;
1273         }
1274
1275         case LFUN_DIALOG_UPDATE: {
1276                 string const name = cmd.getArg(0);
1277                 if (!buf)
1278                         enable = name == "prefs";
1279                 break;
1280         }
1281
1282         case LFUN_INSET_APPLY: {
1283                 string const name = cmd.getArg(0);
1284                 Inset * inset = getOpenInset(name);
1285                 if (inset) {
1286                         FuncRequest fr(LFUN_INSET_MODIFY, cmd.argument());
1287                         FuncStatus fs;
1288                         if (!inset->getStatus(view()->cursor(), fr, fs)) {
1289                                 // Every inset is supposed to handle this
1290                                 LASSERT(false, break);
1291                         }
1292                         flag |= fs;
1293                 } else {
1294                         FuncRequest fr(LFUN_INSET_INSERT, cmd.argument());
1295                         flag |= lyx::getStatus(fr);
1296                 }
1297                 enable = flag.enabled();
1298                 break;
1299         }
1300
1301         case LFUN_COMPLETION_INLINE:
1302                 if (!d.current_work_area_
1303                     || !d.current_work_area_->completer().inlinePossible(view()->cursor()))
1304                     enable = false;
1305                 break;
1306
1307         case LFUN_COMPLETION_POPUP:
1308                 if (!d.current_work_area_
1309                     || !d.current_work_area_->completer().popupPossible(view()->cursor()))
1310                     enable = false;
1311                 break;
1312
1313         case LFUN_COMPLETION_COMPLETE:
1314                 if (!d.current_work_area_
1315                         || !d.current_work_area_->completer().inlinePossible(view()->cursor()))
1316                     enable = false;
1317                 break;
1318
1319         case LFUN_COMPLETION_ACCEPT:
1320                 if (!d.current_work_area_
1321                     || (!d.current_work_area_->completer().popupVisible()
1322                         && !d.current_work_area_->completer().inlineVisible()
1323                         && !d.current_work_area_->completer().completionAvailable()))
1324                         enable = false;
1325                 break;
1326
1327         case LFUN_COMPLETION_CANCEL:
1328                 if (!d.current_work_area_
1329                     || (!d.current_work_area_->completer().popupVisible()
1330                         && !d.current_work_area_->completer().inlineVisible()))
1331                         enable = false;
1332                 break;
1333
1334         case LFUN_BUFFER_ZOOM_OUT:
1335                 enable = buf && lyxrc.zoom > 10;
1336                 break;
1337
1338         case LFUN_BUFFER_ZOOM_IN:
1339                 enable = buf;
1340                 break;
1341
1342         default:
1343                 return false;
1344         }
1345
1346         if (!enable)
1347                 flag.setEnabled(false);
1348
1349         return true;
1350 }
1351
1352
1353 static FileName selectTemplateFile()
1354 {
1355         FileDialog dlg(qt_("Select template file"));
1356         dlg.setButton1(qt_("Documents|#o#O"), toqstr(lyxrc.document_path));
1357         dlg.setButton1(qt_("Templates|#T#t"), toqstr(lyxrc.template_path));
1358
1359         FileDialog::Result result = dlg.open(toqstr(lyxrc.template_path),
1360                              QStringList(qt_("LyX Documents (*.lyx)")));
1361
1362         if (result.first == FileDialog::Later)
1363                 return FileName();
1364         if (result.second.isEmpty())
1365                 return FileName();
1366         return FileName(fromqstr(result.second));
1367 }
1368
1369
1370 Buffer * GuiView::loadDocument(FileName const & filename, bool tolastfiles)
1371 {
1372         setBusy(true);
1373
1374         Buffer * newBuffer = checkAndLoadLyXFile(filename);
1375
1376         if (!newBuffer) {
1377                 message(_("Document not loaded."));
1378                 setBusy(false);
1379                 return 0;
1380         }
1381         
1382         setBuffer(newBuffer);
1383
1384         // scroll to the position when the file was last closed
1385         if (lyxrc.use_lastfilepos) {
1386                 LastFilePosSection::FilePos filepos =
1387                         theSession().lastFilePos().load(filename);
1388                 view()->moveToPosition(filepos.pit, filepos.pos, 0, 0);
1389         }
1390
1391         if (tolastfiles)
1392                 theSession().lastFiles().add(filename);
1393
1394         setBusy(false);
1395         return newBuffer;
1396 }
1397
1398
1399 void GuiView::openDocument(string const & fname)
1400 {
1401         string initpath = lyxrc.document_path;
1402
1403         if (buffer()) {
1404                 string const trypath = buffer()->filePath();
1405                 // If directory is writeable, use this as default.
1406                 if (FileName(trypath).isDirWritable())
1407                         initpath = trypath;
1408         }
1409
1410         string filename;
1411
1412         if (fname.empty()) {
1413                 FileDialog dlg(qt_("Select document to open"), LFUN_FILE_OPEN);
1414                 dlg.setButton1(qt_("Documents|#o#O"), toqstr(lyxrc.document_path));
1415                 dlg.setButton2(qt_("Examples|#E#e"),
1416                                 toqstr(addPath(package().system_support().absFilename(), "examples")));
1417
1418                 QStringList filter(qt_("LyX Documents (*.lyx)"));
1419                 filter << qt_("LyX-1.3.x Documents (*.lyx13)")
1420                         << qt_("LyX-1.4.x Documents (*.lyx14)")
1421                         << qt_("LyX-1.5.x Documents (*.lyx15)")
1422                         << qt_("LyX-1.6.x Documents (*.lyx16)");
1423                 FileDialog::Result result =
1424                         dlg.open(toqstr(initpath), filter);
1425
1426                 if (result.first == FileDialog::Later)
1427                         return;
1428
1429                 filename = fromqstr(result.second);
1430
1431                 // check selected filename
1432                 if (filename.empty()) {
1433                         message(_("Canceled."));
1434                         return;
1435                 }
1436         } else
1437                 filename = fname;
1438
1439         // get absolute path of file and add ".lyx" to the filename if
1440         // necessary. 
1441         FileName const fullname = 
1442                         fileSearch(string(), filename, "lyx", support::may_not_exist);
1443         if (!fullname.empty())
1444                 filename = fullname.absFilename();
1445
1446         if (!fullname.onlyPath().isDirectory()) {
1447                 Alert::warning(_("Invalid filename"),
1448                                 bformat(_("The directory in the given path\n%1$s\ndoes not exist."),
1449                                 from_utf8(fullname.absFilename())));
1450                 return;
1451         }
1452         // if the file doesn't exist, let the user create one
1453         if (!fullname.exists()) {
1454                 // the user specifically chose this name. Believe him.
1455                 Buffer * const b = newFile(filename, string(), true);
1456                 if (b)
1457                         setBuffer(b);
1458                 return;
1459         }
1460
1461         docstring const disp_fn = makeDisplayPath(filename);
1462         message(bformat(_("Opening document %1$s..."), disp_fn));
1463
1464         docstring str2;
1465         Buffer * buf = loadDocument(fullname);
1466         if (buf) {
1467                 buf->updateLabels();
1468                 setBuffer(buf);
1469                 buf->errors("Parse");
1470                 str2 = bformat(_("Document %1$s opened."), disp_fn);
1471                 if (buf->lyxvc().inUse())
1472                         str2 += " " + from_utf8(buf->lyxvc().versionString()) +
1473                                 " " + _("Version control detected.");
1474         } else {
1475                 str2 = bformat(_("Could not open document %1$s"), disp_fn);
1476         }
1477         message(str2);
1478 }
1479
1480 // FIXME: clean that
1481 static bool import(GuiView * lv, FileName const & filename,
1482         string const & format, ErrorList & errorList)
1483 {
1484         FileName const lyxfile(support::changeExtension(filename.absFilename(), ".lyx"));
1485
1486         string loader_format;
1487         vector<string> loaders = theConverters().loaders();
1488         if (find(loaders.begin(), loaders.end(), format) == loaders.end()) {
1489                 for (vector<string>::const_iterator it = loaders.begin();
1490                      it != loaders.end(); ++it) {
1491                         if (!theConverters().isReachable(format, *it))
1492                                 continue;
1493
1494                         string const tofile =
1495                                 support::changeExtension(filename.absFilename(),
1496                                 formats.extension(*it));
1497                         if (!theConverters().convert(0, filename, FileName(tofile),
1498                                 filename, format, *it, errorList))
1499                                 return false;
1500                         loader_format = *it;
1501                         break;
1502                 }
1503                 if (loader_format.empty()) {
1504                         frontend::Alert::error(_("Couldn't import file"),
1505                                      bformat(_("No information for importing the format %1$s."),
1506                                          formats.prettyName(format)));
1507                         return false;
1508                 }
1509         } else
1510                 loader_format = format;
1511
1512         if (loader_format == "lyx") {
1513                 Buffer * buf = lv->loadDocument(lyxfile);
1514                 if (!buf)
1515                         return false;
1516                 buf->updateLabels();
1517                 lv->setBuffer(buf);
1518                 buf->errors("Parse");
1519         } else {
1520                 Buffer * const b = newFile(lyxfile.absFilename(), string(), true);
1521                 if (!b)
1522                         return false;
1523                 lv->setBuffer(b);
1524                 bool as_paragraphs = loader_format == "textparagraph";
1525                 string filename2 = (loader_format == format) ? filename.absFilename()
1526                         : support::changeExtension(filename.absFilename(),
1527                                           formats.extension(loader_format));
1528                 lv->view()->insertPlaintextFile(FileName(filename2), as_paragraphs);
1529                 theLyXFunc().setLyXView(lv);
1530                 lyx::dispatch(FuncRequest(LFUN_MARK_OFF));
1531         }
1532
1533         return true;
1534 }
1535
1536
1537 void GuiView::importDocument(string const & argument)
1538 {
1539         string format;
1540         string filename = split(argument, format, ' ');
1541
1542         LYXERR(Debug::INFO, format << " file: " << filename);
1543
1544         // need user interaction
1545         if (filename.empty()) {
1546                 string initpath = lyxrc.document_path;
1547
1548                 Buffer const * buf = buffer();
1549                 if (buf) {
1550                         string const trypath = buf->filePath();
1551                         // If directory is writeable, use this as default.
1552                         if (FileName(trypath).isDirWritable())
1553                                 initpath = trypath;
1554                 }
1555
1556                 docstring const text = bformat(_("Select %1$s file to import"),
1557                         formats.prettyName(format));
1558
1559                 FileDialog dlg(toqstr(text), LFUN_BUFFER_IMPORT);
1560                 dlg.setButton1(qt_("Documents|#o#O"), toqstr(lyxrc.document_path));
1561                 dlg.setButton2(qt_("Examples|#E#e"),
1562                         toqstr(addPath(package().system_support().absFilename(), "examples")));
1563
1564                 docstring filter = formats.prettyName(format);
1565                 filter += " (*.";
1566                 // FIXME UNICODE
1567                 filter += from_utf8(formats.extension(format));
1568                 filter += ')';
1569
1570                 FileDialog::Result result =
1571                         dlg.open(toqstr(initpath), fileFilters(toqstr(filter)));
1572
1573                 if (result.first == FileDialog::Later)
1574                         return;
1575
1576                 filename = fromqstr(result.second);
1577
1578                 // check selected filename
1579                 if (filename.empty())
1580                         message(_("Canceled."));
1581         }
1582
1583         if (filename.empty())
1584                 return;
1585
1586         // get absolute path of file
1587         FileName const fullname(support::makeAbsPath(filename));
1588
1589         FileName const lyxfile(support::changeExtension(fullname.absFilename(), ".lyx"));
1590
1591         // Check if the document already is open
1592         Buffer * buf = theBufferList().getBuffer(lyxfile);
1593         if (buf) {
1594                 setBuffer(buf);
1595                 if (!closeBuffer()) {
1596                         message(_("Canceled."));
1597                         return;
1598                 }
1599         }
1600
1601         docstring const displaypath = makeDisplayPath(lyxfile.absFilename(), 30);
1602
1603         // if the file exists already, and we didn't do
1604         // -i lyx thefile.lyx, warn
1605         if (lyxfile.exists() && fullname != lyxfile) {
1606
1607                 docstring text = bformat(_("The document %1$s already exists.\n\n"
1608                         "Do you want to overwrite that document?"), displaypath);
1609                 int const ret = Alert::prompt(_("Overwrite document?"),
1610                         text, 0, 1, _("&Overwrite"), _("&Cancel"));
1611
1612                 if (ret == 1) {
1613                         message(_("Canceled."));
1614                         return;
1615                 }
1616         }
1617
1618         message(bformat(_("Importing %1$s..."), displaypath));
1619         ErrorList errorList;
1620         if (import(this, fullname, format, errorList))
1621                 message(_("imported."));
1622         else
1623                 message(_("file not imported!"));
1624
1625         // FIXME (Abdel 12/08/06): Is there a need to display the error list here?
1626 }
1627
1628
1629 void GuiView::newDocument(string const & filename, bool from_template)
1630 {
1631         FileName initpath(lyxrc.document_path);
1632         Buffer * buf = buffer();
1633         if (buf) {
1634                 FileName const trypath(buf->filePath());
1635                 // If directory is writeable, use this as default.
1636                 if (trypath.isDirWritable())
1637                         initpath = trypath;
1638         }
1639
1640         string templatefile;
1641         if (from_template) {
1642                 templatefile = selectTemplateFile().absFilename();
1643                 if (templatefile.empty())
1644                         return;
1645         }
1646         
1647         Buffer * b;
1648         if (filename.empty())
1649                 b = newUnnamedFile(templatefile, initpath);
1650         else
1651                 b = newFile(filename, templatefile, true);
1652
1653         if (b)
1654                 setBuffer(b);
1655
1656         // If no new document could be created, it is unsure 
1657         // whether there is a valid BufferView.
1658         if (view())
1659                 // Ensure the cursor is correctly positioned on screen.
1660                 view()->showCursor();
1661 }
1662
1663
1664 void GuiView::insertLyXFile(docstring const & fname)
1665 {
1666         BufferView * bv = view();
1667         if (!bv)
1668                 return;
1669
1670         // FIXME UNICODE
1671         FileName filename(to_utf8(fname));
1672         
1673         if (!filename.empty()) {
1674                 bv->insertLyXFile(filename);
1675                 return;
1676         }
1677
1678         // Launch a file browser
1679         // FIXME UNICODE
1680         string initpath = lyxrc.document_path;
1681         string const trypath = bv->buffer().filePath();
1682         // If directory is writeable, use this as default.
1683         if (FileName(trypath).isDirWritable())
1684                 initpath = trypath;
1685
1686         // FIXME UNICODE
1687         FileDialog dlg(qt_("Select LyX document to insert"), LFUN_FILE_INSERT);
1688         dlg.setButton1(qt_("Documents|#o#O"), toqstr(lyxrc.document_path));
1689         dlg.setButton2(qt_("Examples|#E#e"),
1690                 toqstr(addPath(package().system_support().absFilename(),
1691                 "examples")));
1692
1693         FileDialog::Result result = dlg.open(toqstr(initpath),
1694                              QStringList(qt_("LyX Documents (*.lyx)")));
1695
1696         if (result.first == FileDialog::Later)
1697                 return;
1698
1699         // FIXME UNICODE
1700         filename.set(fromqstr(result.second));
1701
1702         // check selected filename
1703         if (filename.empty()) {
1704                 // emit message signal.
1705                 message(_("Canceled."));
1706                 return;
1707         }
1708
1709         bv->insertLyXFile(filename);
1710 }
1711
1712
1713 void GuiView::insertPlaintextFile(docstring const & fname,
1714         bool asParagraph)
1715 {
1716         BufferView * bv = view();
1717         if (!bv)
1718                 return;
1719
1720         if (!fname.empty() && !FileName::isAbsolute(to_utf8(fname))) {
1721                 message(_("Absolute filename expected."));
1722                 return;
1723         }
1724
1725         // FIXME UNICODE
1726         FileName filename(to_utf8(fname));
1727         
1728         if (!filename.empty()) {
1729                 bv->insertPlaintextFile(filename, asParagraph);
1730                 return;
1731         }
1732
1733         FileDialog dlg(qt_("Select file to insert"), (asParagraph ?
1734                 LFUN_FILE_INSERT_PLAINTEXT_PARA : LFUN_FILE_INSERT_PLAINTEXT));
1735
1736         FileDialog::Result result = dlg.open(toqstr(bv->buffer().filePath()),
1737                 QStringList(qt_("All Files (*)")));
1738
1739         if (result.first == FileDialog::Later)
1740                 return;
1741
1742         // FIXME UNICODE
1743         filename.set(fromqstr(result.second));
1744
1745         // check selected filename
1746         if (filename.empty()) {
1747                 // emit message signal.
1748                 message(_("Canceled."));
1749                 return;
1750         }
1751
1752         bv->insertPlaintextFile(filename, asParagraph);
1753 }
1754
1755
1756 bool GuiView::renameBuffer(Buffer & b, docstring const & newname)
1757 {
1758         FileName fname = b.fileName();
1759         FileName const oldname = fname;
1760
1761         if (!newname.empty()) {
1762                 // FIXME UNICODE
1763                 fname = support::makeAbsPath(to_utf8(newname), oldname.onlyPath().absFilename());
1764         } else {
1765                 // Switch to this Buffer.
1766                 setBuffer(&b);
1767
1768                 // No argument? Ask user through dialog.
1769                 // FIXME UNICODE
1770                 FileDialog dlg(qt_("Choose a filename to save document as"),
1771                                    LFUN_BUFFER_WRITE_AS);
1772                 dlg.setButton1(qt_("Documents|#o#O"), toqstr(lyxrc.document_path));
1773                 dlg.setButton2(qt_("Templates|#T#t"), toqstr(lyxrc.template_path));
1774
1775                 if (!isLyXFilename(fname.absFilename()))
1776                         fname.changeExtension(".lyx");
1777
1778                 FileDialog::Result result =
1779                         dlg.save(toqstr(fname.onlyPath().absFilename()),
1780                                QStringList(qt_("LyX Documents (*.lyx)")),
1781                                      toqstr(fname.onlyFileName()));
1782
1783                 if (result.first == FileDialog::Later)
1784                         return false;
1785
1786                 fname.set(fromqstr(result.second));
1787
1788                 if (fname.empty())
1789                         return false;
1790
1791                 if (!isLyXFilename(fname.absFilename()))
1792                         fname.changeExtension(".lyx");
1793         }
1794
1795         if (FileName(fname).exists()) {
1796                 docstring const file = makeDisplayPath(fname.absFilename(), 30);
1797                 docstring text = bformat(_("The document %1$s already "
1798                                            "exists.\n\nDo you want to "
1799                                            "overwrite that document?"), 
1800                                          file);
1801                 int const ret = Alert::prompt(_("Overwrite document?"),
1802                         text, 0, 2, _("&Overwrite"), _("&Rename"), _("&Cancel"));
1803                 switch (ret) {
1804                 case 0: break;
1805                 case 1: return renameBuffer(b, docstring());
1806                 case 2: return false;
1807                 }
1808         }
1809
1810         FileName oldauto = b.getAutosaveFilename();
1811
1812         // Ok, change the name of the buffer
1813         b.setFileName(fname.absFilename());
1814         b.markDirty();
1815         bool unnamed = b.isUnnamed();
1816         b.setUnnamed(false);
1817         b.saveCheckSum(fname);
1818
1819         // bring the autosave file with us, just in case.
1820         b.moveAutosaveFile(oldauto);
1821         
1822         if (!saveBuffer(b)) {
1823                 oldauto = b.getAutosaveFilename();
1824                 b.setFileName(oldname.absFilename());
1825                 b.setUnnamed(unnamed);
1826                 b.saveCheckSum(oldname);
1827                 b.moveAutosaveFile(oldauto);
1828                 return false;
1829         }
1830
1831         return true;
1832 }
1833
1834
1835 bool GuiView::saveBuffer(Buffer & b)
1836 {
1837         if (workArea(b) && workArea(b)->inDialogMode())
1838                 return true;
1839
1840         if (b.isUnnamed())
1841                 return renameBuffer(b, docstring());
1842
1843         if (b.save()) {
1844                 theSession().lastFiles().add(b.fileName());
1845                 return true;
1846         }
1847
1848         // Switch to this Buffer.
1849         setBuffer(&b);
1850
1851         // FIXME: we don't tell the user *WHY* the save failed !!
1852         docstring const file = makeDisplayPath(b.absFileName(), 30);
1853         docstring text = bformat(_("The document %1$s could not be saved.\n\n"
1854                                    "Do you want to rename the document and "
1855                                    "try again?"), file);
1856         int const ret = Alert::prompt(_("Rename and save?"),
1857                 text, 0, 2, _("&Rename"), _("&Retry"), _("&Cancel"));
1858         switch (ret) {
1859         case 0:
1860                 if (!renameBuffer(b, docstring()))
1861                         return false;
1862                 break;
1863         case 1:
1864                 break;
1865         case 2:
1866                 return false;
1867         }
1868
1869         return saveBuffer(b);
1870 }
1871
1872
1873 bool GuiView::hideWorkArea(GuiWorkArea * wa)
1874 {
1875         return closeWorkArea(wa, false);
1876 }
1877
1878
1879 bool GuiView::closeWorkArea(GuiWorkArea * wa)
1880 {
1881         Buffer & buf = wa->bufferView().buffer();
1882         return closeWorkArea(wa, !buf.parent());
1883 }
1884
1885
1886 bool GuiView::closeBuffer()
1887 {
1888         GuiWorkArea * wa = currentMainWorkArea();
1889         Buffer & buf = wa->bufferView().buffer();
1890         return wa && closeWorkArea(wa, !buf.parent());
1891 }
1892
1893
1894 void GuiView::writeSession() const {
1895         GuiWorkArea const * active_wa = currentMainWorkArea();
1896         for (int i = 0; i < d.splitter_->count(); ++i) {
1897                 TabWorkArea * twa = d.tabWorkArea(i);
1898                 for (int j = 0; j < twa->count(); ++j) {
1899                         GuiWorkArea * wa = static_cast<GuiWorkArea *>(twa->widget(j));
1900                         Buffer & buf = wa->bufferView().buffer();
1901                         theSession().lastOpened().add(buf.fileName(), wa == active_wa);
1902                 }
1903         }
1904 }
1905
1906
1907 bool GuiView::closeBufferAll()
1908 {
1909         // Close the workareas in all other views
1910         QList<int> const ids = guiApp->viewIds();
1911         for (int i = 0; i != ids.size(); ++i) {
1912                 if (id_ != ids[i] && !guiApp->view(ids[i]).closeWorkAreaAll())
1913                         return false;
1914         }
1915
1916         // Close our own workareas
1917         if (!closeWorkAreaAll())
1918                 return false;
1919
1920         // Now close the hidden buffers. We prevent hidden buffers from being
1921         // dirty, so we can just close them.
1922         theBufferList().closeAll();
1923         return true;
1924 }
1925
1926
1927 bool GuiView::closeWorkAreaAll()
1928 {
1929         setCurrentWorkArea(currentMainWorkArea());
1930
1931         // We might be in a situation that there is still a tabWorkArea, but
1932         // there are no tabs anymore. This can happen when we get here after a 
1933         // TabWorkArea::lastWorkAreaRemoved() signal. Therefore we count how
1934         // many TabWorkArea's have no documents anymore.
1935         int empty_twa = 0;
1936
1937         // We have to call count() each time, because it can happen that
1938         // more than one splitter will disappear in one iteration (bug 5998).
1939         for (; d.splitter_->count() > empty_twa; ) {
1940                 TabWorkArea * twa = d.tabWorkArea(empty_twa);
1941
1942                 if (twa->count() == 0)
1943                         ++empty_twa;
1944                 else {
1945                         setCurrentWorkArea(twa->currentWorkArea());
1946                         if (!closeTabWorkArea(twa))
1947                                 return false;
1948                 }
1949         }
1950         return true;
1951 }
1952
1953
1954 bool GuiView::closeWorkArea(GuiWorkArea * wa, bool close_buffer)
1955 {
1956         Buffer & buf = wa->bufferView().buffer();
1957
1958         // If we are in a close_event all children will be closed in some time,
1959         // so no need to do it here. This will ensure that the children end up
1960         // in the session file in the correct order. If we close the master
1961         // buffer, we can close or release the child buffers here too.
1962         if (close_buffer && !closing_) {
1963                 vector<Buffer *> clist = buf.getChildren();
1964                 for (vector<Buffer *>::const_iterator it = clist.begin();
1965                          it != clist.end(); ++it) {
1966                         // If a child is dirty, do not close
1967                         // without user intervention
1968                         //FIXME: should we look in other tabworkareas?
1969                         Buffer * child_buf = *it;
1970                         GuiWorkArea * child_wa = workArea(*child_buf);
1971                         if (child_wa) {
1972                                 if (!closeWorkArea(child_wa, true))
1973                                         return false;
1974                         } else
1975                                 theBufferList().releaseChild(&buf, child_buf);
1976                 }
1977         }
1978         // goto bookmark to update bookmark pit.
1979         //FIXME: we should update only the bookmarks related to this buffer!
1980         LYXERR(Debug::DEBUG, "GuiView::closeBuffer()");
1981         for (size_t i = 0; i < theSession().bookmarks().size(); ++i)
1982                 theLyXFunc().gotoBookmark(i+1, false, false);
1983
1984         // if we are only hiding the buffer and there are multiple views
1985         // of the buffer, then we do not need to ensure a clean buffer.
1986         bool const allow_dirty = inMultiTabs(wa) && !close_buffer;
1987
1988         if (allow_dirty || saveBufferIfNeeded(buf, !close_buffer)) {
1989                 // save in sessions if requested
1990                 // do not save childs if their master
1991                 // is opened as well
1992                 if (!close_buffer)
1993                         removeWorkArea(wa);
1994                 else
1995                         theBufferList().release(&buf);
1996                 return true;
1997         }
1998         return false;
1999 }
2000
2001
2002 bool GuiView::closeTabWorkArea(TabWorkArea * twa)
2003 {
2004         while (twa == d.currentTabWorkArea()) {
2005                 twa->setCurrentIndex(twa->count()-1);
2006
2007                 GuiWorkArea * wa = twa->currentWorkArea();
2008                 Buffer & b = wa->bufferView().buffer();
2009
2010                 // We only want to close the buffer if the same buffer is not visible
2011                 // in another view, and if this is not a child and if we are closing
2012                 // a view (not a tabgroup).
2013                 bool const close_buffer = 
2014                         !inMultiViews(wa) && !b.parent() && closing_;
2015
2016                 if (!closeWorkArea(wa, close_buffer))
2017                         return false;
2018         }
2019         return true;
2020 }
2021
2022
2023 bool GuiView::saveBufferIfNeeded(Buffer & buf, bool hiding)
2024 {
2025         if (buf.isClean() || buf.paragraphs().empty())
2026                 return true;
2027
2028         // Switch to this Buffer.
2029         setBuffer(&buf);
2030
2031         docstring file;
2032         // FIXME: Unicode?
2033         if (buf.isUnnamed())
2034                 file = from_utf8(buf.fileName().onlyFileName());
2035         else
2036                 file = buf.fileName().displayName(30);
2037
2038         // Bring this window to top before asking questions.
2039         raise();
2040         activateWindow();
2041
2042         int ret;
2043         if (hiding && buf.isUnnamed()) {
2044                 docstring const text = bformat(_("The document %1$s has not been "
2045                                              "saved yet.\n\nDo you want to save "
2046                                              "the document?"), file);
2047                 ret = Alert::prompt(_("Save new document?"), 
2048                         text, 0, 1, _("&Save"), _("&Cancel"));
2049                 if (ret == 1)
2050                         ++ret;
2051         } else {
2052                 docstring const text = bformat(_("The document %1$s has unsaved changes."
2053                         "\n\nDo you want to save the document or discard the changes?"), file);
2054                 ret = Alert::prompt(_("Save changed document?"),
2055                         text, 0, 2, _("&Save"), _("&Discard"), _("&Cancel"));
2056         }
2057
2058         switch (ret) {
2059         case 0:
2060                 if (!saveBuffer(buf))
2061                         return false;
2062                 break;
2063         case 1:
2064                 // if we crash after this we could
2065                 // have no autosave file but I guess
2066                 // this is really improbable (Jug)
2067                 buf.removeAutosaveFile();
2068                 if (hiding)
2069                         // revert all changes
2070                         buf.loadLyXFile(buf.fileName());
2071                 buf.markClean();
2072                 break;
2073         case 2:
2074                 return false;
2075         }
2076         return true;
2077 }
2078
2079
2080 bool GuiView::inMultiTabs(GuiWorkArea * wa)
2081 {
2082         Buffer & buf = wa->bufferView().buffer();
2083
2084         for (int i = 0; i != d.splitter_->count(); ++i) {
2085                 GuiWorkArea * wa_ = d.tabWorkArea(i)->workArea(buf);
2086                 if (wa_ && wa_ != wa)
2087                         return true;
2088         }
2089         return inMultiViews(wa);
2090 }
2091
2092
2093 bool GuiView::inMultiViews(GuiWorkArea * wa)
2094 {
2095         QList<int> const ids = guiApp->viewIds();
2096         Buffer & buf = wa->bufferView().buffer();
2097
2098         int found_twa = 0;
2099         for (int i = 0; i != ids.size() && found_twa <= 1; ++i) {
2100                 if (id_ == ids[i])
2101                         continue;
2102                 
2103                 if (guiApp->view(ids[i]).workArea(buf))
2104                         return true;
2105         }
2106         return false;
2107 }
2108
2109
2110 void GuiView::gotoNextOrPreviousBuffer(NextOrPrevious np)
2111 {
2112         Buffer * const curbuf = buffer();
2113         Buffer * nextbuf = curbuf;
2114         while (true) {
2115                 if (np == NEXTBUFFER)
2116                         nextbuf = theBufferList().next(nextbuf);
2117                 else
2118                         nextbuf = theBufferList().previous(nextbuf);
2119                 if (nextbuf == curbuf)
2120                         break;
2121                 if (nextbuf == 0) {
2122                         nextbuf = curbuf;
2123                         break;
2124                 }
2125                 if (workArea(*nextbuf))
2126                         break;
2127         }
2128         setBuffer(nextbuf);
2129 }
2130
2131
2132 bool GuiView::dispatch(FuncRequest const & cmd)
2133 {
2134         BufferView * bv = view();
2135         // By default we won't need any update.
2136         if (bv)
2137                 bv->cursor().updateFlags(Update::None);
2138         bool dispatched = true;
2139
2140         if (cmd.origin == FuncRequest::TOC) {
2141                 GuiToc * toc = static_cast<GuiToc*>(findOrBuild("toc", false));
2142                 toc->doDispatch(bv->cursor(), cmd);
2143                 return true;
2144         }
2145
2146         switch(cmd.action) {
2147                 case LFUN_BUFFER_IMPORT:
2148                         importDocument(to_utf8(cmd.argument()));
2149                         break;
2150
2151                 case LFUN_BUFFER_SWITCH:
2152                         if (FileName::isAbsolute(to_utf8(cmd.argument()))) {
2153                                 Buffer * buffer = 
2154                                         theBufferList().getBuffer(FileName(to_utf8(cmd.argument())));
2155                                 if (buffer)
2156                                         setBuffer(buffer);
2157                                 else
2158                                         bv->cursor().message(_("Document not loaded"));
2159                         }
2160                         break;
2161
2162                 case LFUN_BUFFER_NEXT:
2163                         gotoNextOrPreviousBuffer(NEXTBUFFER);
2164                         break;
2165
2166                 case LFUN_BUFFER_PREVIOUS:
2167                         gotoNextOrPreviousBuffer(PREVBUFFER);
2168                         break;
2169
2170                 case LFUN_COMMAND_EXECUTE: {
2171                         bool const show_it = cmd.argument() != "off";
2172                         // FIXME: this is a hack, "minibuffer" should not be
2173                         // hardcoded.
2174                         if (GuiToolbar * t = toolbar("minibuffer")) {
2175                                 t->setVisible(show_it);
2176                                 if (show_it && t->commandBuffer())
2177                                         t->commandBuffer()->setFocus();
2178                         }
2179                         break;
2180                 }
2181                 case LFUN_DROP_LAYOUTS_CHOICE:
2182                         d.layout_->showPopup();
2183                         break;
2184
2185                 case LFUN_MENU_OPEN:
2186                         if (QMenu * menu = guiApp->menus().menu(toqstr(cmd.argument()), *this))
2187                                 menu->exec(QCursor::pos());
2188                         break;
2189
2190                 case LFUN_FILE_INSERT:
2191                         insertLyXFile(cmd.argument());
2192                         break;
2193                 case LFUN_FILE_INSERT_PLAINTEXT_PARA:
2194                         insertPlaintextFile(cmd.argument(), true);
2195                         break;
2196
2197                 case LFUN_FILE_INSERT_PLAINTEXT:
2198                         insertPlaintextFile(cmd.argument(), false);
2199                         break;
2200
2201                 case LFUN_BUFFER_WRITE:
2202                         if (bv)
2203                                 saveBuffer(bv->buffer());
2204                         break;
2205
2206                 case LFUN_BUFFER_WRITE_AS:
2207                         if (bv)
2208                                 renameBuffer(bv->buffer(), cmd.argument());
2209                         break;
2210
2211                 case LFUN_BUFFER_WRITE_ALL: {
2212                         Buffer * first = theBufferList().first();
2213                         if (!first)
2214                                 break;
2215                         message(_("Saving all documents..."));
2216                         // We cannot use a for loop as the buffer list cycles.
2217                         Buffer * b = first;
2218                         do {
2219                                 if (!b->isClean()) {
2220                                         saveBuffer(*b);
2221                                         LYXERR(Debug::ACTION, "Saved " << b->absFileName());
2222                                 }
2223                                 b = theBufferList().next(b);
2224                         } while (b != first); 
2225                         message(_("All documents saved."));
2226                         break;
2227                 }
2228
2229                 case LFUN_TOOLBAR_TOGGLE: {
2230                         string const name = cmd.getArg(0);
2231                         if (GuiToolbar * t = toolbar(name))
2232                                 t->toggle();
2233                         break;
2234                 }
2235
2236                 case LFUN_DIALOG_UPDATE: {
2237                         string const name = to_utf8(cmd.argument());
2238                         // Can only update a dialog connected to an existing inset
2239                         Inset * inset = getOpenInset(name);
2240                         if (inset) {
2241                                 FuncRequest fr(LFUN_INSET_DIALOG_UPDATE, cmd.argument());
2242                                 inset->dispatch(view()->cursor(), fr);
2243                         } else if (name == "paragraph") {
2244                                 lyx::dispatch(FuncRequest(LFUN_PARAGRAPH_UPDATE));
2245                         } else if (name == "prefs" || name == "document") {
2246                                 updateDialog(name, string());
2247                         }
2248                         break;
2249                 }
2250
2251                 case LFUN_DIALOG_TOGGLE: {
2252                         if (isDialogVisible(cmd.getArg(0)))
2253                                 dispatch(FuncRequest(LFUN_DIALOG_HIDE, cmd.argument()));
2254                         else
2255                                 dispatch(FuncRequest(LFUN_DIALOG_SHOW, cmd.argument()));
2256                         break;
2257                 }
2258
2259                 case LFUN_DIALOG_DISCONNECT_INSET:
2260                         disconnectDialog(to_utf8(cmd.argument()));
2261                         break;
2262
2263                 case LFUN_DIALOG_HIDE: {
2264                         guiApp->hideDialogs(to_utf8(cmd.argument()), 0);
2265                         break;
2266                 }
2267
2268                 case LFUN_DIALOG_SHOW: {
2269                         string const name = cmd.getArg(0);
2270                         string data = trim(to_utf8(cmd.argument()).substr(name.size()));
2271
2272                         if (name == "character") {
2273                                 data = freefont2string();
2274                                 if (!data.empty())
2275                                         showDialog("character", data);
2276                         } else if (name == "latexlog") {
2277                                 Buffer::LogType type; 
2278                                 string const logfile = buffer()->logName(&type);
2279                                 switch (type) {
2280                                 case Buffer::latexlog:
2281                                         data = "latex ";
2282                                         break;
2283                                 case Buffer::buildlog:
2284                                         data = "literate ";
2285                                         break;
2286                                 }
2287                                 data += Lexer::quoteString(logfile);
2288                                 showDialog("log", data);
2289                         } else if (name == "vclog") {
2290                                 string const data = "vc " +
2291                                         Lexer::quoteString(buffer()->lyxvc().getLogFile());
2292                                 showDialog("log", data);
2293                         } else if (name == "symbols") {
2294                                 data = bv->cursor().getEncoding()->name();
2295                                 if (!data.empty())
2296                                         showDialog("symbols", data);
2297                         // bug 5274
2298                         } else if (name == "prefs" && isFullScreen()) {
2299                                 FuncRequest fr(LFUN_INSET_INSERT, "fullscreen");
2300                                 lfunUiToggle(fr);
2301                                 showDialog("prefs", data);
2302                         } else
2303                                 showDialog(name, data);
2304                         break;
2305                 }
2306
2307                 case LFUN_INSET_APPLY: {
2308                         string const name = cmd.getArg(0);
2309                         Inset * inset = getOpenInset(name);
2310                         if (inset) {
2311                                 // put cursor in front of inset.
2312                                 if (!view()->setCursorFromInset(inset)) {
2313                                         LASSERT(false, break);
2314                                 }
2315                                 
2316                                 // useful if we are called from a dialog.
2317                                 view()->cursor().beginUndoGroup();
2318                                 view()->cursor().recordUndo();
2319                                 FuncRequest fr(LFUN_INSET_MODIFY, cmd.argument());
2320                                 inset->dispatch(view()->cursor(), fr);
2321                                 view()->cursor().endUndoGroup();
2322                         } else {
2323                                 FuncRequest fr(LFUN_INSET_INSERT, cmd.argument());
2324                                 lyx::dispatch(fr);
2325                         }
2326                         break;
2327                 }
2328
2329                 case LFUN_UI_TOGGLE:
2330                         lfunUiToggle(cmd);
2331                         // Make sure the keyboard focus stays in the work area.
2332                         setFocus();
2333                         break;
2334
2335                 case LFUN_SPLIT_VIEW:
2336                         if (Buffer * buf = buffer()) {
2337                                 string const orientation = cmd.getArg(0);
2338                                 d.splitter_->setOrientation(orientation == "vertical"
2339                                         ? Qt::Vertical : Qt::Horizontal);
2340                                 TabWorkArea * twa = addTabWorkArea();
2341                                 GuiWorkArea * wa = twa->addWorkArea(*buf, *this);
2342                                 setCurrentWorkArea(wa);
2343                         }
2344                         break;
2345
2346                 case LFUN_CLOSE_TAB_GROUP:
2347                         if (TabWorkArea * twa = d.currentTabWorkArea()) {
2348                                 closeTabWorkArea(twa);
2349                                 d.current_work_area_ = 0;
2350                                 twa = d.currentTabWorkArea();
2351                                 // Switch to the next GuiWorkArea in the found TabWorkArea.
2352                                 if (twa) {
2353                                         // Make sure the work area is up to date.
2354                                         setCurrentWorkArea(twa->currentWorkArea());
2355                                 } else {
2356                                         setCurrentWorkArea(0);
2357                                 }
2358                         }
2359                         break;
2360                         
2361                 case LFUN_COMPLETION_INLINE:
2362                         if (d.current_work_area_)
2363                                 d.current_work_area_->completer().showInline();
2364                         break;
2365
2366                 case LFUN_COMPLETION_POPUP:
2367                         if (d.current_work_area_)
2368                                 d.current_work_area_->completer().showPopup();
2369                         break;
2370
2371
2372                 case LFUN_COMPLETION_COMPLETE:
2373                         if (d.current_work_area_)
2374                                 d.current_work_area_->completer().tab();
2375                         break;
2376
2377                 case LFUN_COMPLETION_CANCEL:
2378                         if (d.current_work_area_) {
2379                                 if (d.current_work_area_->completer().popupVisible())
2380                                         d.current_work_area_->completer().hidePopup();
2381                                 else
2382                                         d.current_work_area_->completer().hideInline();
2383                         }
2384                         break;
2385
2386                 case LFUN_COMPLETION_ACCEPT:
2387                         if (d.current_work_area_)
2388                                 d.current_work_area_->completer().activate();
2389                         break;
2390
2391                 case LFUN_BUFFER_ZOOM_IN:
2392                 case LFUN_BUFFER_ZOOM_OUT:
2393                         if (cmd.argument().empty()) {
2394                                 if (cmd.action == LFUN_BUFFER_ZOOM_IN)
2395                                         lyxrc.zoom += 20;
2396                                 else
2397                                         lyxrc.zoom -= 20;
2398                         } else
2399                                 lyxrc.zoom += convert<int>(cmd.argument());
2400
2401                         if (lyxrc.zoom < 10)
2402                                 lyxrc.zoom = 10;
2403                                 
2404                         // The global QPixmapCache is used in GuiPainter to cache text
2405                         // painting so we must reset it.
2406                         QPixmapCache::clear();
2407                         guiApp->fontLoader().update();
2408                         lyx::dispatch(FuncRequest(LFUN_SCREEN_FONT_UPDATE));
2409                         break;
2410
2411                 default:
2412                         dispatched = false;
2413                         break;
2414         }
2415
2416         // Part of automatic menu appearance feature.
2417         if (isFullScreen()) {
2418                 if (menuBar()->isVisible() && lyxrc.full_screen_menubar)
2419                         menuBar()->hide();
2420                 if (statusBar()->isVisible())
2421                         statusBar()->hide();
2422         }
2423
2424         return dispatched;
2425 }
2426
2427
2428 void GuiView::lfunUiToggle(FuncRequest const & cmd)
2429 {
2430         string const arg = cmd.getArg(0);
2431         if (arg == "scrollbar") {
2432                 // hide() is of no help
2433                 if (d.current_work_area_->verticalScrollBarPolicy() ==
2434                         Qt::ScrollBarAlwaysOff)
2435
2436                         d.current_work_area_->setVerticalScrollBarPolicy(
2437                                 Qt::ScrollBarAsNeeded);
2438                 else
2439                         d.current_work_area_->setVerticalScrollBarPolicy(
2440                                 Qt::ScrollBarAlwaysOff);
2441                 return;
2442         }
2443         if (arg == "statusbar") {
2444                 statusBar()->setVisible(!statusBar()->isVisible());
2445                 return;
2446         }
2447         if (arg == "menubar") {
2448                 menuBar()->setVisible(!menuBar()->isVisible());
2449                 return;
2450         }
2451 #if QT_VERSION >= 0x040300
2452         if (arg == "frame") {
2453                 int l, t, r, b;
2454                 getContentsMargins(&l, &t, &r, &b);
2455                 //are the frames in default state?
2456                 d.current_work_area_->setFrameStyle(QFrame::NoFrame);
2457                 if (l == 0) {
2458                         setContentsMargins(-2, -2, -2, -2);
2459                 } else {
2460                         setContentsMargins(0, 0, 0, 0);
2461                 }
2462                 return;
2463         }
2464 #endif
2465         if (arg == "fullscreen") {
2466                 toggleFullScreen();
2467                 return;
2468         }
2469
2470         message(bformat("LFUN_UI_TOGGLE " + _("%1$s unknown command!"), from_utf8(arg)));
2471 }
2472
2473
2474 void GuiView::toggleFullScreen()
2475 {
2476         if (isFullScreen()) {
2477                 for (int i = 0; i != d.splitter_->count(); ++i)
2478                         d.tabWorkArea(i)->setFullScreen(false);
2479 #if QT_VERSION >= 0x040300
2480                 setContentsMargins(0, 0, 0, 0);
2481 #endif
2482                 setWindowState(windowState() ^ Qt::WindowFullScreen);
2483                 restoreLayout();
2484                 menuBar()->show();
2485                 statusBar()->show();
2486         } else {
2487                 // bug 5274
2488                 hideDialogs("prefs", 0);
2489                 for (int i = 0; i != d.splitter_->count(); ++i)
2490                         d.tabWorkArea(i)->setFullScreen(true);
2491 #if QT_VERSION >= 0x040300
2492                 setContentsMargins(-2, -2, -2, -2);
2493 #endif
2494                 saveLayout();
2495                 setWindowState(windowState() ^ Qt::WindowFullScreen);
2496                 statusBar()->hide();
2497                 if (lyxrc.full_screen_menubar)
2498                         menuBar()->hide();
2499                 if (lyxrc.full_screen_toolbars) {
2500                         ToolbarMap::iterator end = d.toolbars_.end();
2501                         for (ToolbarMap::iterator it = d.toolbars_.begin(); it != end; ++it)
2502                                 it->second->hide();
2503                 }
2504         }
2505
2506         // give dialogs like the TOC a chance to adapt
2507         updateDialogs();
2508 }
2509
2510
2511 Buffer const * GuiView::updateInset(Inset const * inset)
2512 {
2513         if (!d.current_work_area_)
2514                 return 0;
2515
2516         if (inset)
2517                 d.current_work_area_->scheduleRedraw();
2518
2519         return &d.current_work_area_->bufferView().buffer();
2520 }
2521
2522
2523 void GuiView::restartCursor()
2524 {
2525         /* When we move around, or type, it's nice to be able to see
2526          * the cursor immediately after the keypress.
2527          */
2528         if (d.current_work_area_)
2529                 d.current_work_area_->startBlinkingCursor();
2530
2531         // Take this occasion to update the other GUI elements.
2532         updateDialogs();
2533         updateStatusBar();
2534 }
2535
2536
2537 void GuiView::updateCompletion(Cursor & cur, bool start, bool keep)
2538 {
2539         if (d.current_work_area_)
2540                 d.current_work_area_->completer().updateVisibility(cur, start, keep);
2541 }
2542
2543 namespace {
2544
2545 // This list should be kept in sync with the list of insets in
2546 // src/insets/Inset.cpp.  I.e., if a dialog goes with an inset, the
2547 // dialog should have the same name as the inset.
2548 // Changes should be also recorded in LFUN_DIALOG_SHOW doxygen
2549 // docs in LyXAction.cpp.
2550
2551 char const * const dialognames[] = {
2552 "aboutlyx", "bibitem", "bibtex", "box", "branch", "changes", "character",
2553 "citation", "document", "errorlist", "ert", "external", "file", "findreplace",
2554 "findreplaceadv", "float", "graphics", "href", "include", "index",
2555 "index_print", "info", "listings", "label", "log", "mathdelimiter",
2556 "mathmatrix", "mathspace", "nomenclature", "nomencl_print", "note",
2557 "paragraph", "phantom", "prefs", "print", "ref", "sendto", "space",
2558 "spellchecker", "symbols", "tabular", "tabularcreate", "thesaurus", "texinfo",
2559 "toc", "view-source", "vspace", "wrap" };
2560
2561 char const * const * const end_dialognames =
2562         dialognames + (sizeof(dialognames) / sizeof(char *));
2563
2564 class cmpCStr {
2565 public:
2566         cmpCStr(char const * name) : name_(name) {}
2567         bool operator()(char const * other) {
2568                 return strcmp(other, name_) == 0;
2569         }
2570 private:
2571         char const * name_;
2572 };
2573
2574
2575 bool isValidName(string const & name)
2576 {
2577         return find_if(dialognames, end_dialognames,
2578                             cmpCStr(name.c_str())) != end_dialognames;
2579 }
2580
2581 } // namespace anon
2582
2583
2584 void GuiView::resetDialogs()
2585 {
2586         // Make sure that no LFUN uses any LyXView.
2587         theLyXFunc().setLyXView(0);
2588         saveLayout();
2589         menuBar()->clear();
2590         constructToolbars();
2591         guiApp->menus().fillMenuBar(menuBar(), this, false);
2592         d.layout_->updateContents(true);
2593         // Now update controls with current buffer.
2594         theLyXFunc().setLyXView(this);
2595         restoreLayout();
2596         restartCursor();
2597 }
2598
2599
2600 Dialog * GuiView::findOrBuild(string const & name, bool hide_it)
2601 {
2602         if (!isValidName(name))
2603                 return 0;
2604
2605         map<string, DialogPtr>::iterator it = d.dialogs_.find(name);
2606
2607         if (it != d.dialogs_.end()) {
2608                 if (hide_it)
2609                         it->second->hideView();
2610                 return it->second.get();
2611         }
2612
2613         Dialog * dialog = build(name);
2614         d.dialogs_[name].reset(dialog);
2615         if (lyxrc.allow_geometry_session)
2616                 dialog->restoreSession();
2617         if (hide_it)
2618                 dialog->hideView();
2619         return dialog;
2620 }
2621
2622
2623 void GuiView::showDialog(string const & name, string const & data,
2624         Inset * inset)
2625 {
2626         if (d.in_show_)
2627                 return;
2628
2629         d.in_show_ = true;
2630         try {
2631                 Dialog * dialog = findOrBuild(name, false);
2632                 if (dialog) {
2633                         dialog->showData(data);
2634                         if (inset)
2635                                 d.open_insets_[name] = inset;
2636                 }
2637         }
2638         catch (ExceptionMessage const & ex) {
2639                 d.in_show_ = false;
2640                 throw ex;
2641         }
2642         d.in_show_ = false;
2643 }
2644
2645
2646 bool GuiView::isDialogVisible(string const & name) const
2647 {
2648         map<string, DialogPtr>::const_iterator it = d.dialogs_.find(name);
2649         if (it == d.dialogs_.end())
2650                 return false;
2651         return it->second.get()->isVisibleView() && !it->second.get()->isClosing();
2652 }
2653
2654
2655 void GuiView::hideDialog(string const & name, Inset * inset)
2656 {
2657         map<string, DialogPtr>::const_iterator it = d.dialogs_.find(name);
2658         if (it == d.dialogs_.end())
2659                 return;
2660
2661         if (inset && inset != getOpenInset(name))
2662                 return;
2663
2664         Dialog * const dialog = it->second.get();
2665         if (dialog->isVisibleView())
2666                 dialog->hideView();
2667         d.open_insets_[name] = 0;
2668 }
2669
2670
2671 void GuiView::disconnectDialog(string const & name)
2672 {
2673         if (!isValidName(name))
2674                 return;
2675
2676         if (d.open_insets_.find(name) != d.open_insets_.end())
2677                 d.open_insets_[name] = 0;
2678 }
2679
2680
2681 Inset * GuiView::getOpenInset(string const & name) const
2682 {
2683         if (!isValidName(name))
2684                 return 0;
2685
2686         map<string, Inset *>::const_iterator it = d.open_insets_.find(name);
2687         return it == d.open_insets_.end() ? 0 : it->second;
2688 }
2689
2690
2691 void GuiView::hideAll() const
2692 {
2693         map<string, DialogPtr>::const_iterator it  = d.dialogs_.begin();
2694         map<string, DialogPtr>::const_iterator end = d.dialogs_.end();
2695
2696         for(; it != end; ++it)
2697                 it->second->hideView();
2698 }
2699
2700
2701 void GuiView::updateDialogs()
2702 {
2703         map<string, DialogPtr>::const_iterator it  = d.dialogs_.begin();
2704         map<string, DialogPtr>::const_iterator end = d.dialogs_.end();
2705
2706         for(; it != end; ++it) {
2707                 Dialog * dialog = it->second.get();
2708                 if (dialog && dialog->isVisibleView())
2709                         dialog->checkStatus();
2710         }
2711         updateToolbars();
2712         updateLayoutList();
2713 }
2714
2715
2716 // will be replaced by a proper factory...
2717 Dialog * createGuiAbout(GuiView & lv);
2718 Dialog * createGuiBibitem(GuiView & lv);
2719 Dialog * createGuiBibtex(GuiView & lv);
2720 Dialog * createGuiBox(GuiView & lv);
2721 Dialog * createGuiBranch(GuiView & lv);
2722 Dialog * createGuiChanges(GuiView & lv);
2723 Dialog * createGuiCharacter(GuiView & lv);
2724 Dialog * createGuiCitation(GuiView & lv);
2725 Dialog * createGuiDelimiter(GuiView & lv);
2726 Dialog * createGuiDocument(GuiView & lv);
2727 Dialog * createGuiErrorList(GuiView & lv);
2728 Dialog * createGuiERT(GuiView & lv);
2729 Dialog * createGuiExternal(GuiView & lv);
2730 Dialog * createGuiFloat(GuiView & lv);
2731 Dialog * createGuiGraphics(GuiView & lv);
2732 Dialog * createGuiInclude(GuiView & lv);
2733 Dialog * createGuiIndex(GuiView & lv);
2734 Dialog * createGuiInfo(GuiView & lv);
2735 Dialog * createGuiLabel(GuiView & lv);
2736 Dialog * createGuiListings(GuiView & lv);
2737 Dialog * createGuiLog(GuiView & lv);
2738 Dialog * createGuiMathHSpace(GuiView & lv);
2739 Dialog * createGuiMathMatrix(GuiView & lv);
2740 Dialog * createGuiNomenclature(GuiView & lv);
2741 Dialog * createGuiNote(GuiView & lv);
2742 Dialog * createGuiParagraph(GuiView & lv);
2743 Dialog * createGuiPhantom(GuiView & lv);
2744 Dialog * createGuiPreferences(GuiView & lv);
2745 Dialog * createGuiPrint(GuiView & lv);
2746 Dialog * createGuiPrintindex(GuiView & lv);
2747 Dialog * createGuiPrintNomencl(GuiView & lv);
2748 Dialog * createGuiRef(GuiView & lv);
2749 Dialog * createGuiSearch(GuiView & lv);
2750 Dialog * createGuiSearchAdv(GuiView & lv);
2751 Dialog * createGuiSendTo(GuiView & lv);
2752 Dialog * createGuiShowFile(GuiView & lv);
2753 Dialog * createGuiSpellchecker(GuiView & lv);
2754 Dialog * createGuiSymbols(GuiView & lv);
2755 Dialog * createGuiTabularCreate(GuiView & lv);
2756 Dialog * createGuiTabular(GuiView & lv);
2757 Dialog * createGuiTexInfo(GuiView & lv);
2758 Dialog * createGuiTextHSpace(GuiView & lv);
2759 Dialog * createGuiToc(GuiView & lv);
2760 Dialog * createGuiThesaurus(GuiView & lv);
2761 Dialog * createGuiHyperlink(GuiView & lv);
2762 Dialog * createGuiVSpace(GuiView & lv);
2763 Dialog * createGuiViewSource(GuiView & lv);
2764 Dialog * createGuiWrap(GuiView & lv);
2765
2766
2767 Dialog * GuiView::build(string const & name)
2768 {
2769         LASSERT(isValidName(name), return 0);
2770
2771         if (name == "aboutlyx")
2772                 return createGuiAbout(*this);
2773         if (name == "bibitem")
2774                 return createGuiBibitem(*this);
2775         if (name == "bibtex")
2776                 return createGuiBibtex(*this);
2777         if (name == "box")
2778                 return createGuiBox(*this);
2779         if (name == "branch")
2780                 return createGuiBranch(*this);
2781         if (name == "changes")
2782                 return createGuiChanges(*this);
2783         if (name == "character")
2784                 return createGuiCharacter(*this);
2785         if (name == "citation")
2786                 return createGuiCitation(*this);
2787         if (name == "document")
2788                 return createGuiDocument(*this);
2789         if (name == "errorlist")
2790                 return createGuiErrorList(*this);
2791         if (name == "ert")
2792                 return createGuiERT(*this);
2793         if (name == "external")
2794                 return createGuiExternal(*this);
2795         if (name == "file")
2796                 return createGuiShowFile(*this);
2797         if (name == "findreplace")
2798                 return createGuiSearch(*this);
2799         if (name == "findreplaceadv")
2800                 return createGuiSearchAdv(*this);
2801         if (name == "float")
2802                 return createGuiFloat(*this);
2803         if (name == "graphics")
2804                 return createGuiGraphics(*this);
2805         if (name == "href")
2806                 return createGuiHyperlink(*this);
2807         if (name == "include")
2808                 return createGuiInclude(*this);
2809         if (name == "index")
2810                 return createGuiIndex(*this);
2811         if (name == "index_print")
2812                 return createGuiPrintindex(*this);
2813         if (name == "info")
2814                 return createGuiInfo(*this);
2815         if (name == "label")
2816                 return createGuiLabel(*this);
2817         if (name == "listings")
2818                 return createGuiListings(*this);
2819         if (name == "log")
2820                 return createGuiLog(*this);
2821         if (name == "mathdelimiter")
2822                 return createGuiDelimiter(*this);
2823         if (name == "mathspace")
2824                 return createGuiMathHSpace(*this);
2825         if (name == "mathmatrix")
2826                 return createGuiMathMatrix(*this);
2827         if (name == "nomenclature")
2828                 return createGuiNomenclature(*this);
2829         if (name == "nomencl_print")
2830                 return createGuiPrintNomencl(*this);
2831         if (name == "note")
2832                 return createGuiNote(*this);
2833         if (name == "paragraph")
2834                 return createGuiParagraph(*this);
2835         if (name == "phantom")
2836                 return createGuiPhantom(*this);
2837         if (name == "prefs")
2838                 return createGuiPreferences(*this);
2839         if (name == "print")
2840                 return createGuiPrint(*this);
2841         if (name == "ref")
2842                 return createGuiRef(*this);
2843         if (name == "sendto")
2844                 return createGuiSendTo(*this);
2845         if (name == "space")
2846                 return createGuiTextHSpace(*this);
2847         if (name == "spellchecker")
2848                 return createGuiSpellchecker(*this);
2849         if (name == "symbols")
2850                 return createGuiSymbols(*this);
2851         if (name == "tabular")
2852                 return createGuiTabular(*this);
2853         if (name == "tabularcreate")
2854                 return createGuiTabularCreate(*this);
2855         if (name == "texinfo")
2856                 return createGuiTexInfo(*this);
2857         if (name == "thesaurus")
2858                 return createGuiThesaurus(*this);
2859         if (name == "toc")
2860                 return createGuiToc(*this);
2861         if (name == "view-source")
2862                 return createGuiViewSource(*this);
2863         if (name == "vspace")
2864                 return createGuiVSpace(*this);
2865         if (name == "wrap")
2866                 return createGuiWrap(*this);
2867
2868         return 0;
2869 }
2870
2871
2872 } // namespace frontend
2873 } // namespace lyx
2874
2875 #include "moc_GuiView.cpp"