]> git.lyx.org Git - lyx.git/blob - src/frontends/qt4/GuiView.cpp
Use QSettings for session management of windows geometry. This commit also removes...
[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 "GuiImplementation.h"
19 #include "GuiWorkArea.h"
20 #include "GuiKeySymbol.h"
21 #include "GuiMenubar.h"
22 #include "GuiToolbar.h"
23 #include "GuiToolbars.h"
24 #include "Dialogs.h"
25 #include "Gui.h"
26
27 #include "qt_helpers.h"
28
29 #include "frontends/Application.h"
30 #include "frontends/Dialogs.h"
31 #include "frontends/Gui.h"
32
33 #include "support/filetools.h"
34 #include "support/convert.h"
35 #include "support/lstrings.h"
36 #include "support/os.h"
37
38 #include "buffer_funcs.h"
39 #include "Buffer.h"
40 #include "BufferList.h"
41 #include "BufferParams.h"
42 #include "BufferView.h"
43 #include "Cursor.h"
44 #include "debug.h"
45 #include "ErrorList.h"
46 #include "FuncRequest.h"
47 #include "gettext.h"
48 #include "Intl.h"
49 #include "Layout.h"
50 #include "LyXFunc.h"
51 #include "LyX.h"
52 #include "LyXRC.h"
53 #include "MenuBackend.h"
54 #include "Paragraph.h"
55 #include "TextClass.h"
56 #include "Text.h"
57 #include "ToolbarBackend.h"
58 #include "version.h"
59
60 #include "support/lstrings.h"
61 #include "support/filetools.h" // OnlyFilename()
62 #include "support/Timeout.h"
63
64 #include <QAction>
65 #include <QApplication>
66 #include <QCloseEvent>
67 #include <QDesktopWidget>
68 #include <QDragEnterEvent>
69 #include <QDropEvent>
70 #include <QList>
71 #include <QMenu>
72 #include <QPainter>
73 #include <QPixmap>
74 #include <QPushButton>
75 #include <QSettings>
76 #include <QShowEvent>
77 #include <QSplitter>
78 #include <QStackedWidget>
79 #include <QStatusBar>
80 #include <QToolBar>
81 #include <QUrl>
82
83 #include <boost/bind.hpp>
84 #include <boost/current_function.hpp>
85
86 #ifdef HAVE_SYS_TIME_H
87 # include <sys/time.h>
88 #endif
89 #ifdef HAVE_UNISTD_H
90 # include <unistd.h>
91 #endif
92
93 using std::endl;
94 using std::string;
95 using std::vector;
96
97 namespace lyx {
98
99 extern bool quitting;
100
101 namespace frontend {
102
103 using support::bformat;
104 using support::FileName;
105 using support::makeDisplayPath;
106 using support::onlyFilename;
107
108 namespace {
109
110 int const statusbar_timer_value = 3000;
111
112 class BackgroundWidget : public QWidget
113 {
114 public:
115         BackgroundWidget(QString const & file, QString const & text)
116         {
117                 splash_ = new QPixmap(file);
118                 if (!splash_) {
119                         lyxerr << "could not load splash screen: '" << fromqstr(file) << "'" << endl;
120                         return;
121                 }
122
123                 QPainter pain(splash_);
124                 pain.setPen(QColor(255, 255, 0));
125                 QFont font;
126                 // The font used to display the version info
127                 font.setStyleHint(QFont::SansSerif);
128                 font.setWeight(QFont::Bold);
129                 font.setPointSize(convert<int>(lyxrc.font_sizes[FONT_SIZE_LARGE]));
130                 pain.setFont(font);
131                 pain.drawText(260, 270, text);
132         }
133
134         void paintEvent(QPaintEvent *)
135         {
136                 if (!splash_)
137                         return;
138
139                 int x = (width() - splash_->width()) / 2;
140                 int y = (height() - splash_->height()) / 2;
141                 QPainter pain(this);
142                 pain.drawPixmap(x, y, *splash_);
143         }
144
145 private:
146         QPixmap * splash_;
147 };
148
149 } // namespace anon
150
151
152 struct GuiView::GuiViewPrivate
153 {
154         GuiViewPrivate()
155                 : current_work_area_(0), posx_offset(0), posy_offset(0)
156         {}
157
158         ~GuiViewPrivate()
159         {
160                 delete splitter_;
161                 delete bg_widget_;
162                 delete stack_widget_;
163                 delete menubar_;
164                 delete toolbars_;
165         }
166
167         unsigned int smallIconSize;
168         unsigned int normalIconSize;
169         unsigned int bigIconSize;
170         // static needed by "New Window"
171         static unsigned int lastIconSize;
172
173         QMenu * toolBarPopup(GuiView * parent)
174         {
175                 // FIXME: translation
176                 QMenu * menu = new QMenu(parent);
177                 QActionGroup * iconSizeGroup = new QActionGroup(parent);
178
179                 QAction * smallIcons = new QAction(iconSizeGroup);
180                 smallIcons->setText(qt_("Small-sized icons"));
181                 smallIcons->setCheckable(true);
182                 QObject::connect(smallIcons, SIGNAL(triggered()),
183                         parent, SLOT(smallSizedIcons()));
184                 menu->addAction(smallIcons);
185
186                 QAction * normalIcons = new QAction(iconSizeGroup);
187                 normalIcons->setText(qt_("Normal-sized icons"));
188                 normalIcons->setCheckable(true);
189                 QObject::connect(normalIcons, SIGNAL(triggered()),
190                         parent, SLOT(normalSizedIcons()));
191                 menu->addAction(normalIcons);
192
193                 QAction * bigIcons = new QAction(iconSizeGroup);
194                 bigIcons->setText(qt_("Big-sized icons"));
195                 bigIcons->setCheckable(true);
196                 QObject::connect(bigIcons, SIGNAL(triggered()),
197                         parent, SLOT(bigSizedIcons()));
198                 menu->addAction(bigIcons);
199
200                 unsigned int cur = parent->iconSize().width();
201                 if ( cur == parent->d.smallIconSize)
202                         smallIcons->setChecked(true);
203                 else if (cur == parent->d.normalIconSize)
204                         normalIcons->setChecked(true);
205                 else if (cur == parent->d.bigIconSize)
206                         bigIcons->setChecked(true);
207
208                 return menu;
209         }
210
211         void initBackground()
212         {
213                 LYXERR(Debug::GUI) << "show banner: " << lyxrc.show_banner << endl;
214                 /// The text to be written on top of the pixmap
215                 QString const text = lyx_version ? QString(lyx_version) : qt_("unknown version");
216                 bg_widget_ = new BackgroundWidget(":/images/banner.png", text);
217         }
218
219         void setBackground()
220         {
221                 stack_widget_->setCurrentWidget(bg_widget_);
222                 bg_widget_->setUpdatesEnabled(true);
223         }
224
225         TabWorkArea * tabWorkArea(int i)
226         {
227                 return dynamic_cast<TabWorkArea *>(splitter_->widget(i));
228         }
229
230         TabWorkArea * currentTabWorkArea()
231         {
232                 if (splitter_->count() == 1)
233                         // The first TabWorkArea is always the first one, if any.
234                         return tabWorkArea(0);
235
236                 TabWorkArea * tab_widget = 0;
237                 for (int i = 0; i != splitter_->count(); ++i) {
238                         QWidget * w = splitter_->widget(i);
239                         if (!w->hasFocus())
240                                 continue;
241                         tab_widget = dynamic_cast<TabWorkArea *>(w);
242                         if (tab_widget)
243                                 break;
244                 }
245
246                 return tab_widget;
247         }
248
249 public:
250         ///
251         string cur_title;
252
253         GuiWorkArea * current_work_area_;
254         int posx_offset;
255         int posy_offset;
256
257         QSplitter * splitter_;
258         QStackedWidget * stack_widget_;
259         BackgroundWidget * bg_widget_;
260         /// view's menubar
261         GuiMenubar * menubar_;
262         /// view's toolbars
263         GuiToolbars * toolbars_;
264         ///
265         docstring current_layout;
266 };
267
268
269 unsigned int GuiView::GuiViewPrivate::lastIconSize = 0;
270
271
272 GuiView::GuiView(int id)
273         : QMainWindow(), LyXView(id),
274           d(*new GuiViewPrivate),
275                 quitting_by_menu_(false),
276                 autosave_timeout_(new Timeout(5000)),
277           dialogs_(new Dialogs(*this))
278 {
279         // Start autosave timer
280         if (lyxrc.autosave) {
281                 autosave_timeout_->timeout.connect(boost::bind(&GuiView::autoSave, this));
282                 autosave_timeout_->setTimeout(lyxrc.autosave * 1000);
283                 autosave_timeout_->start();
284         }
285
286         // Qt bug? signal lastWindowClosed does not work
287         setAttribute(Qt::WA_QuitOnClose, false);
288         setAttribute(Qt::WA_DeleteOnClose, true);
289
290         // hardcode here the platform specific icon size
291         d.smallIconSize = 14;   // scaling problems
292         d.normalIconSize = 20;  // ok, default
293         d.bigIconSize = 26;             // better for some math icons
294
295 #ifndef Q_WS_MACX
296         // assign an icon to main form. We do not do it under Qt/Mac,
297         // since the icon is provided in the application bundle.
298         setWindowIcon(QPixmap(":/images/lyx.png"));
299 #endif
300
301
302         d.splitter_ = new QSplitter;
303
304         d.initBackground();
305         LYXERR(Debug::GUI) << "stack widget!" << endl;
306         d.stack_widget_ = new QStackedWidget;
307         d.stack_widget_->addWidget(d.bg_widget_);
308         d.stack_widget_->addWidget(d.splitter_);
309         setCentralWidget(d.stack_widget_);
310
311         // For Drag&Drop.
312         setAcceptDrops(true);
313 }
314
315
316 GuiView::~GuiView()
317 {
318         delete dialogs_;
319         delete autosave_timeout_;
320         delete &d;
321 }
322
323
324 void GuiView::close()
325 {
326         quitting_by_menu_ = true;
327         d.current_work_area_ = 0;
328         for (int i = 0; i != d.splitter_->count(); ++i) {
329                 TabWorkArea * twa = d.tabWorkArea(i);
330                 if (twa)
331                         twa->closeAll();
332         }
333         QMainWindow::close();
334         quitting_by_menu_ = false;
335 }
336
337
338 void GuiView::setFocus()
339 {
340         if (d.current_work_area_)
341                 d.current_work_area_->setFocus();
342         else
343                 QWidget::setFocus();
344 }
345
346
347 QMenu* GuiView::createPopupMenu()
348 {
349         return d.toolBarPopup(this);
350 }
351
352
353 void GuiView::init()
354 {
355         // GuiToolbars *must* be initialised before GuiMenubar.
356         d.toolbars_ = new GuiToolbars(*this);
357         // FIXME: GuiToolbars::init() cannot be integrated in the ctor
358         // because LyXFunc::getStatus() needs a properly initialized
359         // GuiToolbars object (for LFUN_TOOLBAR_TOGGLE).
360         d.toolbars_->init();
361         d.menubar_ = new GuiMenubar(this, menubackend);
362
363         statusBar()->setSizeGripEnabled(true);
364
365         QObject::connect(&statusbar_timer_, SIGNAL(timeout()),
366                 this, SLOT(clearMessage()));
367
368         d.setBackground();
369 }
370
371
372 void GuiView::showEvent(QShowEvent * e)
373 {
374         if (lyxrc.allow_geometry_session) {
375                 QSettings settings;
376                 QString const key = "view-" + QString::number(id());
377                 if (!restoreGeometry(settings.value(key + "/geometry").toByteArray()))
378                         setGeometry(50, 50, 690, 510);
379                 setIconSize(settings.value(key + "/icon_size").toSize());
380         } else
381                 setGeometry(50, 50, 690, 510);
382
383         if (d.splitter_->count() == 0)
384                 // No work area, switch to the background widget.
385                 d.setBackground();
386
387         QMainWindow::showEvent(e);
388 }
389
390
391 void GuiView::closeEvent(QCloseEvent * close_event)
392 {
393         // we may have been called through the close window button
394         // which bypasses the LFUN machinery.
395         if (!quitting_by_menu_ && theApp()->gui().viewIds().size() == 1) {
396                 if (!theBufferList().quitWriteAll()) {
397                         close_event->ignore();
398                         return;
399                 }
400         }
401
402         // Make sure that no LFUN use this close to be closed View.
403         theLyXFunc().setLyXView(0);
404         // Make sure the timer time out will not trigger a statusbar update.
405         statusbar_timer_.stop();
406
407         if (lyxrc.allow_geometry_session) {
408                 QSettings settings;
409                 QString const key = "view-" + QString::number(id());
410                 settings.setValue(key + "/geometry", saveGeometry());
411                 settings.setValue(key + "/icon_size", iconSize());
412                 d.toolbars_->saveToolbarInfo();
413         }
414
415         theApp()->gui().unregisterView(id());
416         if (!theApp()->gui().viewIds().empty()) {
417                 // Just close the window and do nothing else if this is not the
418                 // last window.
419                 close_event->accept();
420                 return;
421         }
422
423         quitting = true;
424
425         // this is the place where we leave the frontend.
426         // it is the only point at which we start quitting.
427         close_event->accept();
428         // quit the event loop
429         qApp->quit();
430 }
431
432
433 void GuiView::dragEnterEvent(QDragEnterEvent * event)
434 {
435         if (event->mimeData()->hasUrls())
436                 event->accept();
437         /// \todo Ask lyx-devel is this is enough:
438         /// if (event->mimeData()->hasFormat("text/plain"))
439         ///     event->acceptProposedAction();
440 }
441
442
443 void GuiView::dropEvent(QDropEvent* event)
444 {
445         QList<QUrl> files = event->mimeData()->urls();
446         if (files.isEmpty())
447                 return;
448
449         LYXERR(Debug::GUI) << BOOST_CURRENT_FUNCTION
450                 << " got URLs!" << endl;
451         for (int i = 0; i != files.size(); ++i) {
452                 string const file = support::os::internal_path(fromqstr(
453                         files.at(i).toLocalFile()));
454                 if (!file.empty())
455                         dispatch(FuncRequest(LFUN_FILE_OPEN, file));
456         }
457 }
458
459
460 void GuiView::message(docstring const & str)
461 {
462         statusBar()->showMessage(toqstr(str));
463         statusbar_timer_.stop();
464         statusbar_timer_.start(statusbar_timer_value);
465 }
466
467
468 void GuiView::smallSizedIcons()
469 {
470         setIconSize(QSize(d.smallIconSize, d.smallIconSize));
471 }
472
473
474 void GuiView::normalSizedIcons()
475 {
476         setIconSize(QSize(d.normalIconSize, d.normalIconSize));
477 }
478
479
480 void GuiView::bigSizedIcons()
481 {
482         setIconSize(QSize(d.bigIconSize, d.bigIconSize));
483 }
484
485
486 void GuiView::clearMessage()
487 {
488         if (!hasFocus())
489                 return;
490         theLyXFunc().setLyXView(this);
491         statusBar()->showMessage(toqstr(theLyXFunc().viewStatusMessage()));
492         statusbar_timer_.stop();
493 }
494
495
496 void GuiView::updateWindowTitle(GuiWorkArea * wa)
497 {
498         if (wa != d.current_work_area_)
499                 return;
500         setWindowTitle(qt_("LyX: ") + wa->windowTitle());
501         setWindowIconText(wa->windowIconText());
502 }
503
504
505 void GuiView::on_currentWorkAreaChanged(GuiWorkArea * wa)
506 {
507         disconnectBuffer();
508         disconnectBufferView();
509         connectBufferView(wa->bufferView());
510         connectBuffer(wa->bufferView().buffer());
511         d.current_work_area_ = wa;
512         QObject::connect(wa, SIGNAL(titleChanged(GuiWorkArea *)),
513                 this, SLOT(updateWindowTitle(GuiWorkArea *)));
514         updateWindowTitle(wa);
515
516         updateToc();
517         // Buffer-dependent dialogs should be updated or
518         // hidden. This should go here because some dialogs (eg ToC)
519         // require bv_->text.
520         dialogs_->updateBufferDependent(true);
521         updateToolbars();
522         updateLayoutChoice(false);
523         updateStatusBar();
524 }
525
526
527 void GuiView::updateStatusBar()
528 {
529         // let the user see the explicit message
530         if (statusbar_timer_.isActive())
531                 return;
532
533         statusBar()->showMessage(toqstr(theLyXFunc().viewStatusMessage()));
534 }
535
536
537 bool GuiView::hasFocus() const
538 {
539         return qApp->activeWindow() == this;
540 }
541
542
543 bool GuiView::event(QEvent * e)
544 {
545         switch (e->type())
546         {
547         // Useful debug code:
548         //case QEvent::ActivationChange:
549         //case QEvent::WindowDeactivate:
550         //case QEvent::Paint:
551         //case QEvent::Enter:
552         //case QEvent::Leave:
553         //case QEvent::HoverEnter:
554         //case QEvent::HoverLeave:
555         //case QEvent::HoverMove:
556         //case QEvent::StatusTip:
557         //case QEvent::DragEnter:
558         //case QEvent::DragLeave:
559         //case QEvent::Drop:
560         //      break;
561
562         case QEvent::WindowActivate: {
563                 theApp()->setCurrentView(*this);
564                 if (d.current_work_area_) {
565                         BufferView & bv = d.current_work_area_->bufferView();
566                         connectBufferView(bv);
567                         connectBuffer(bv.buffer());
568                         // The document structure, name and dialogs might have
569                         // changed in another view.
570                         dialogs_->updateBufferDependent(true);
571                 } else {
572                         setWindowTitle(qt_("LyX"));
573                         setWindowIconText(qt_("LyX"));
574                 }
575                 return QMainWindow::event(e);
576         }
577         case QEvent::ShortcutOverride: {
578                 QKeyEvent * ke = static_cast<QKeyEvent*>(e);
579                 if (!d.current_work_area_) {
580                         theLyXFunc().setLyXView(this);
581                         KeySymbol sym;
582                         setKeySymbol(&sym, ke);
583                         theLyXFunc().processKeySym(sym, q_key_state(ke->modifiers()));
584                         e->accept();
585                         return true;
586                 }
587                 if (ke->key() == Qt::Key_Tab || ke->key() == Qt::Key_Backtab) {
588                         KeySymbol sym;
589                         setKeySymbol(&sym, ke);
590                         d.current_work_area_->processKeySym(sym, NoModifier);
591                         e->accept();
592                         return true;
593                 }
594         }
595         default:
596                 return QMainWindow::event(e);
597         }
598 }
599
600
601 bool GuiView::focusNextPrevChild(bool /*next*/)
602 {
603         setFocus();
604         return true;
605 }
606
607
608 void GuiView::setBusy(bool yes)
609 {
610         if (d.current_work_area_) {
611                 d.current_work_area_->setUpdatesEnabled(!yes);
612                 if (yes)
613                         d.current_work_area_->stopBlinkingCursor();
614                 else
615                         d.current_work_area_->startBlinkingCursor();
616         }
617
618         if (yes)
619                 QApplication::setOverrideCursor(Qt::WaitCursor);
620         else
621                 QApplication::restoreOverrideCursor();
622 }
623
624
625 GuiToolbar * GuiView::makeToolbar(ToolbarInfo const & tbinfo, bool newline)
626 {
627         GuiToolbar * toolBar = new GuiToolbar(tbinfo, *this);
628
629         if (tbinfo.flags & ToolbarInfo::TOP) {
630                 if (newline)
631                         addToolBarBreak(Qt::TopToolBarArea);
632                 addToolBar(Qt::TopToolBarArea, toolBar);
633         }
634
635         if (tbinfo.flags & ToolbarInfo::BOTTOM) {
636 // Qt < 4.2.2 cannot handle ToolBarBreak on non-TOP dock.
637 #if (QT_VERSION >= 0x040202)
638                 if (newline)
639                         addToolBarBreak(Qt::BottomToolBarArea);
640 #endif
641                 addToolBar(Qt::BottomToolBarArea, toolBar);
642         }
643
644         if (tbinfo.flags & ToolbarInfo::LEFT) {
645 // Qt < 4.2.2 cannot handle ToolBarBreak on non-TOP dock.
646 #if (QT_VERSION >= 0x040202)
647                 if (newline)
648                         addToolBarBreak(Qt::LeftToolBarArea);
649 #endif
650                 addToolBar(Qt::LeftToolBarArea, toolBar);
651         }
652
653         if (tbinfo.flags & ToolbarInfo::RIGHT) {
654 // Qt < 4.2.2 cannot handle ToolBarBreak on non-TOP dock.
655 #if (QT_VERSION >= 0x040202)
656                 if (newline)
657                         addToolBarBreak(Qt::RightToolBarArea);
658 #endif
659                 addToolBar(Qt::RightToolBarArea, toolBar);
660         }
661
662         // The following does not work so I cannot restore to exact toolbar location
663         /*
664         ToolbarSection::ToolbarInfo & tbinfo = LyX::ref().session().toolbars().load(tbinfo.name);
665         toolBar->move(tbinfo.posx, tbinfo.posy);
666         */
667
668         return toolBar;
669 }
670
671
672 GuiWorkArea * GuiView::workArea(Buffer & buffer)
673 {
674         for (int i = 0; i != d.splitter_->count(); ++i) {
675                 GuiWorkArea * wa = d.tabWorkArea(i)->workArea(buffer);
676                 if (wa)
677                         return wa;
678         }
679         return 0;
680 }
681
682
683 GuiWorkArea * GuiView::addWorkArea(Buffer & buffer)
684 {
685         GuiWorkArea * wa = new GuiWorkArea(buffer, *this);
686         wa->setUpdatesEnabled(false);
687
688         // Automatically create a TabWorkArea if there are none yet.
689         if (!d.splitter_->count())
690                 addTabWorkArea();
691
692         TabWorkArea * tab_widget = d.currentTabWorkArea();
693         tab_widget->addTab(wa, wa->windowTitle());
694         QObject::connect(wa, SIGNAL(titleChanged(GuiWorkArea *)),
695                 tab_widget, SLOT(updateTabText(GuiWorkArea *)));
696
697         wa->bufferView().updateMetrics();
698
699         // Hide tabbar if there's only one tab.
700         tab_widget->showBar(tab_widget->count() > 1);
701         return wa;
702 }
703
704
705 void GuiView::addTabWorkArea()
706 {
707         TabWorkArea * twa = new TabWorkArea;
708         QObject::connect(twa, SIGNAL(currentWorkAreaChanged(GuiWorkArea *)),
709                 this, SLOT(on_currentWorkAreaChanged(GuiWorkArea *)));
710         d.splitter_->addWidget(twa);
711         d.stack_widget_->setCurrentWidget(d.splitter_);
712 }
713
714
715 GuiWorkArea const * GuiView::currentWorkArea() const
716 {
717         return d.current_work_area_;
718 }
719
720
721 void GuiView::setCurrentWorkArea(GuiWorkArea * work_area)
722 {
723         BOOST_ASSERT(work_area);
724
725         // Changing work area can result from opening a file so
726         // update the toc in any case.
727         updateToc();
728
729         GuiWorkArea * wa = static_cast<GuiWorkArea *>(work_area);
730         d.current_work_area_ = wa;
731         for (int i = 0; i != d.splitter_->count(); ++i) {
732                 if (d.tabWorkArea(i)->setCurrentWorkArea(wa))
733                         return;
734         }
735 }
736
737
738 void GuiView::removeWorkArea(GuiWorkArea * work_area)
739 {
740         BOOST_ASSERT(work_area);
741         GuiWorkArea * gwa = static_cast<GuiWorkArea *>(work_area);
742         if (gwa == d.current_work_area_) {
743                 disconnectBuffer();
744                 disconnectBufferView();
745                 dialogs_->hideBufferDependent();
746                 d.current_work_area_ = 0;
747         }
748
749         // removing a work area often results from closing a file so
750         // update the toc in any case.
751         updateToc();
752
753         for (int i = 0; i != d.splitter_->count(); ++i) {
754                 TabWorkArea * twa = d.tabWorkArea(i);
755                 if (!twa->removeWorkArea(gwa))
756                         // Not found in this tab group.
757                         continue;
758
759                 // We found and removed the GuiWorkArea.
760                 if (!twa->count()) {
761                         // No more WorkAreas in this tab group, so delete it.
762                         delete twa;
763                         break;
764                 }
765
766                 if (d.current_work_area_)
767                         // This means that we are not closing the current GuiWorkArea;
768                         break;
769
770                 // Switch to the next GuiWorkArea in the found TabWorkArea.
771                 d.current_work_area_ = twa->currentWorkArea();
772                 break;
773         }
774
775         if (d.splitter_->count() == 0)
776                 // No more work area, switch to the background widget.
777                 d.setBackground();
778 }
779
780
781 void GuiView::updateLayoutChoice(bool force)
782 {
783         // Don't show any layouts without a buffer
784         if (!buffer()) {
785                 d.toolbars_->clearLayoutList();
786                 return;
787         }
788
789         // Update the layout display
790         if (d.toolbars_->updateLayoutList(buffer()->params().getTextClassPtr(), force)) {
791                 d.current_layout = buffer()->params().getTextClass().defaultLayoutName();
792         }
793
794         docstring const & layout = d.current_work_area_->bufferView().cursor().
795                 innerParagraph().layout()->name();
796
797         if (layout != d.current_layout) {
798                 d.toolbars_->setLayout(layout);
799                 d.current_layout = layout;
800         }
801 }
802
803
804 bool GuiView::isToolbarVisible(std::string const & id)
805 {
806         return d.toolbars_->visible(id);
807 }
808
809 void GuiView::updateToolbars()
810 {
811         if (d.current_work_area_) {
812                 bool const math =
813                         d.current_work_area_->bufferView().cursor().inMathed();
814                 bool const table =
815                         lyx::getStatus(FuncRequest(LFUN_LAYOUT_TABULAR)).enabled();
816                 bool const review =
817                         lyx::getStatus(FuncRequest(LFUN_CHANGES_TRACK)).enabled() &&
818                         lyx::getStatus(FuncRequest(LFUN_CHANGES_TRACK)).onoff(true);
819
820                 d.toolbars_->update(math, table, review);
821         } else
822                 d.toolbars_->update(false, false, false);
823
824         // update read-only status of open dialogs.
825         dialogs_->checkStatus();
826 }
827
828
829 Buffer * GuiView::buffer()
830 {
831         if (d.current_work_area_)
832                 return &d.current_work_area_->bufferView().buffer();
833         return 0;
834 }
835
836
837 Buffer const * GuiView::buffer() const
838 {
839         if (d.current_work_area_)
840                 return &d.current_work_area_->bufferView().buffer();
841         return 0;
842 }
843
844
845 void GuiView::setBuffer(Buffer * newBuffer)
846 {
847         BOOST_ASSERT(newBuffer);
848         setBusy(true);
849
850         GuiWorkArea * wa = workArea(*newBuffer);
851         if (wa == 0) {
852                 updateLabels(*newBuffer->masterBuffer());
853                 wa = addWorkArea(*newBuffer);
854         } else {
855                 //Disconnect the old buffer...there's no new one.
856                 disconnectBuffer();
857         }
858         connectBuffer(*newBuffer);
859         connectBufferView(wa->bufferView());
860         setCurrentWorkArea(wa);
861
862         setBusy(false);
863 }
864
865
866 Buffer * GuiView::loadLyXFile(FileName const & filename, bool tolastfiles)
867 {
868         setBusy(true);
869
870         Buffer * newBuffer = checkAndLoadLyXFile(filename);
871
872         if (!newBuffer) {
873                 message(_("Document not loaded."));
874                 updateStatusBar();
875                 setBusy(false);
876                 return 0;
877         }
878
879         GuiWorkArea * wa = workArea(*newBuffer);
880         if (wa == 0)
881                 wa = addWorkArea(*newBuffer);
882
883         // scroll to the position when the file was last closed
884         if (lyxrc.use_lastfilepos) {
885                 LastFilePosSection::FilePos filepos =
886                         LyX::ref().session().lastFilePos().load(filename);
887                 // if successfully move to pit (returned par_id is not zero),
888                 // update metrics and reset font
889                 wa->bufferView().moveToPosition(filepos.pit, filepos.pos, 0, 0);
890         }
891
892         if (tolastfiles)
893                 LyX::ref().session().lastFiles().add(filename);
894
895         setBusy(false);
896         return newBuffer;
897 }
898
899
900 void GuiView::connectBuffer(Buffer & buf)
901 {
902         buf.setGuiDelegate(this);
903 }
904
905
906 void GuiView::disconnectBuffer()
907 {
908         if (d.current_work_area_)
909                 d.current_work_area_->bufferView().setGuiDelegate(0);
910 }
911
912
913 void GuiView::connectBufferView(BufferView & bv)
914 {
915         bv.setGuiDelegate(this);
916 }
917
918
919 void GuiView::disconnectBufferView()
920 {
921         if (d.current_work_area_)
922                 d.current_work_area_->bufferView().setGuiDelegate(0);
923 }
924
925
926 void GuiView::errors(string const & error_type)
927 {
928         ErrorList & el = buffer()->errorList(error_type);
929         if (!el.empty())
930                 dialogs_->show("errorlist", error_type);
931 }
932
933
934 void GuiView::showDialog(string const & name)
935 {
936         dialogs_->show(name);
937 }
938
939
940 void GuiView::showDialogWithData(string const & name, string const & data)
941 {
942         dialogs_->show(name, data);
943 }
944
945
946 void GuiView::showInsetDialog(string const & name, string const & data,
947                 Inset * inset)
948 {
949         dialogs_->show(name, data, inset);
950 }
951
952
953 void GuiView::updateDialog(string const & name, string const & data)
954 {
955         if (dialogs_->visible(name))
956                 dialogs_->update(name, data);
957 }
958
959
960 BufferView * GuiView::view()
961 {
962         return d.current_work_area_ ? &d.current_work_area_->bufferView() : 0;
963 }
964
965
966 void GuiView::updateToc()
967 {
968         updateDialog("toc", "");
969 }
970
971
972 void GuiView::updateEmbeddedFiles()
973 {
974         updateDialog("embedding", "");
975 }
976
977
978 void GuiView::autoSave()
979 {
980         LYXERR(Debug::INFO) << "Running autoSave()" << endl;
981
982         if (buffer())
983                 view()->buffer().autoSave();
984 }
985
986
987 void GuiView::resetAutosaveTimers()
988 {
989         if (lyxrc.autosave)
990                 autosave_timeout_->restart();
991 }
992
993
994 void GuiView::dispatch(FuncRequest const & cmd)
995 {
996         switch(cmd.action) {
997                 case LFUN_BUFFER_SWITCH:
998                         setBuffer(theBufferList().getBuffer(to_utf8(cmd.argument())));
999                         break;
1000
1001                 case LFUN_COMMAND_EXECUTE: {
1002                         bool const show_it = cmd.argument() != "off";
1003                         d.toolbars_->showCommandBuffer(show_it);
1004                         break;
1005                 }
1006                 case LFUN_DROP_LAYOUTS_CHOICE:
1007                         d.toolbars_->openLayoutList();
1008                         break;
1009
1010                 case LFUN_MENU_OPEN:
1011                         d.menubar_->openByName(toqstr(cmd.argument()));
1012                         break;
1013
1014                 case LFUN_TOOLBAR_TOGGLE: {
1015                         string const name = cmd.getArg(0);
1016                         bool const allowauto = cmd.getArg(1) == "allowauto";
1017                         // it is possible to get current toolbar status like this,...
1018                         // but I decide to obey the order of ToolbarBackend::flags
1019                         // and disregard real toolbar status.
1020                         // toolbars_->saveToolbarInfo();
1021                         //
1022                         // toggle state on/off/auto
1023                         d.toolbars_->toggleToolbarState(name, allowauto);
1024                         // update toolbar
1025                         updateToolbars();
1026
1027                         ToolbarInfo * tbi = d.toolbars_->getToolbarInfo(name);
1028                         if (!tbi) {
1029                                 message(bformat(_("Unknown toolbar \"%1$s\""), from_utf8(name)));
1030                                 break;
1031                         }
1032                         docstring state;
1033                         if (tbi->flags & ToolbarInfo::ON)
1034                                 state = _("on");
1035                         else if (tbi->flags & ToolbarInfo::OFF)
1036                                 state = _("off");
1037                         else if (tbi->flags & ToolbarInfo::AUTO)
1038                                 state = _("auto");
1039
1040                         message(bformat(_("Toolbar \"%1$s\" state set to %2$s"), 
1041                                            _(tbi->gui_name), state));
1042                         break;
1043                 }
1044
1045                 default:
1046                         theLyXFunc().setLyXView(this);
1047                         lyx::dispatch(cmd);
1048         }
1049 }
1050
1051
1052 Buffer const * GuiView::updateInset(Inset const * inset)
1053 {
1054         if (!d.current_work_area_)
1055                 return 0;
1056
1057         if (inset)
1058                 d.current_work_area_->scheduleRedraw();
1059
1060         return &d.current_work_area_->bufferView().buffer();
1061 }
1062
1063
1064 void GuiView::restartCursor()
1065 {
1066         /* When we move around, or type, it's nice to be able to see
1067          * the cursor immediately after the keypress.
1068          */
1069         if (d.current_work_area_)
1070                 d.current_work_area_->startBlinkingCursor();
1071 }
1072
1073 } // namespace frontend
1074 } // namespace lyx
1075
1076 #include "GuiView_moc.cpp"