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