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