X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Ffrontends%2Fqt4%2FGuiView.cpp;h=63bd54ec63c476087b971512b96e55f65fe1eb06;hb=d2a96bcdc369b52ae6fb52c5a612bcd9f665231b;hp=c51f7176bbcc1b231d681c97054633658125f455;hpb=2a725d7c23446f71ea0fa51aa2cae6e6b50c9b7d;p=lyx.git diff --git a/src/frontends/qt4/GuiView.cpp b/src/frontends/qt4/GuiView.cpp index c51f7176bb..63bd54ec63 100644 --- a/src/frontends/qt4/GuiView.cpp +++ b/src/frontends/qt4/GuiView.cpp @@ -18,11 +18,13 @@ #include "Dialog.h" #include "FileDialog.h" #include "GuiApplication.h" +#include "GuiCompleter.h" #include "GuiWorkArea.h" #include "GuiKeySymbol.h" #include "GuiToolbar.h" #include "GuiToolbars.h" #include "Menus.h" +#include "TocModel.h" #include "qt_helpers.h" @@ -35,10 +37,11 @@ #include "BufferView.h" #include "Converter.h" #include "Cursor.h" +#include "Encoding.h" #include "ErrorList.h" #include "Format.h" +#include "FuncStatus.h" #include "FuncRequest.h" -#include "support/gettext.h" #include "Intl.h" #include "Layout.h" #include "Lexer.h" @@ -52,10 +55,11 @@ #include "ToolbarBackend.h" #include "version.h" +#include "support/lassert.h" #include "support/debug.h" -#include "support/FileFilterList.h" #include "support/FileName.h" #include "support/filetools.h" +#include "support/gettext.h" #include "support/ForkedCalls.h" #include "support/lstrings.h" #include "support/os.h" @@ -86,7 +90,6 @@ #include #include -#include #include #ifdef HAVE_SYS_TIME_H @@ -111,18 +114,19 @@ public: { LYXERR(Debug::GUI, "show banner: " << lyxrc.show_banner); /// The text to be written on top of the pixmap - QString const text = lyx_version ? lyx_version : qt_("unknown version"); + QString const text = lyx_version ? + qt_("version ") + lyx_version : qt_("unknown version"); splash_ = QPixmap(":/images/banner.png"); QPainter pain(&splash_); - pain.setPen(QColor(255, 255, 0)); + pain.setPen(QColor(0, 0, 0)); QFont font; // The font used to display the version info font.setStyleHint(QFont::SansSerif); font.setWeight(QFont::Bold); font.setPointSize(int(toqstr(lyxrc.font_sizes[FONT_SIZE_LARGE]).toDouble())); pain.setFont(font); - pain.drawText(260, 270, text); + pain.drawText(190, 225, text); } void paintEvent(QPaintEvent *) @@ -145,8 +149,8 @@ typedef boost::shared_ptr DialogPtr; struct GuiView::GuiViewPrivate { GuiViewPrivate() - : current_work_area_(0), layout_(0), - quitting_by_menu_(false), autosave_timeout_(5000), in_show_(false) + : current_work_area_(0), layout_(0), autosave_timeout_(5000), + in_show_(false) { // hardcode here the platform specific icon size smallIconSize = 14; // scaling problems @@ -263,12 +267,13 @@ public: unsigned int bigIconSize; /// QTimer statusbar_timer_; - /// are we quitting by the menu? - bool quitting_by_menu_; /// auto-saving of buffers Timeout autosave_timeout_; /// flag against a race condition due to multiclicks, see bug #1119 bool in_show_; + + /// + TocModels toc_models_; }; @@ -278,8 +283,13 @@ GuiView::GuiView(int id) // GuiToolbars *must* be initialised before the menu bar. d.toolbars_ = new GuiToolbars(*this); + // set ourself as the current view. This is needed for the menu bar + // filling, at least for the static special menu item on Mac. Otherwise + // they are greyed out. + theLyXFunc().setLyXView(this); + // Fill up the menu bar. - guiApp->menus().fillMenuBar(this); + guiApp->menus().fillMenuBar(menuBar(), this, true); setCentralWidget(d.stack_widget_); @@ -292,11 +302,11 @@ GuiView::GuiView(int id) connect(&d.statusbar_timer_, SIGNAL(timeout()), this, SLOT(clearMessage())); - // Qt bug? signal lastWindowClosed does not work - setAttribute(Qt::WA_QuitOnClose, false); + // We don't want to keep the window in memory if it is closed. setAttribute(Qt::WA_DeleteOnClose, true); -#ifndef Q_WS_MACX - // assign an icon to main form. We do not do it under Qt/Mac, + +#if (!defined(Q_WS_WIN) && !defined(Q_WS_MACX)) + // assign an icon to main form. We do not do it under Qt/Win or Qt/Mac, // since the icon is provided in the application bundle. setWindowIcon(QPixmap(":/images/lyx.png")); #endif @@ -332,21 +342,17 @@ GuiView::GuiView(int id) GuiView::~GuiView() { + if (guiApp->currentView() == this) + guiApp->setCurrentView(0); + theLyXFunc().setLyXView(0); + delete &d; } -void GuiView::close() +TocModels & GuiView::tocModels() { - d.quitting_by_menu_ = true; - d.current_work_area_ = 0; - for (int i = 0; i != d.splitter_->count(); ++i) { - TabWorkArea * twa = d.tabWorkArea(i); - if (twa) - twa->closeAll(); - } - QMainWindow::close(); - d.quitting_by_menu_ = false; + return d.toc_models_; } @@ -381,10 +387,41 @@ void GuiView::showEvent(QShowEvent * e) void GuiView::closeEvent(QCloseEvent * close_event) { - // we may have been called through the close window button - // which bypasses the LFUN machinery. - if (!d.quitting_by_menu_ && guiApp->viewCount() == 1) { - if (!quitWriteAll()) { + // it can happen that this event arrives without selecting the view, + // e.g. when clicking the close button on a background window. + theLyXFunc().setLyXView(this); + + while (Buffer * b = buffer()) { + if (b->parent()) { + // This is a child document, just close the tab after saving + // but keep the file loaded. + if (!saveBuffer(*b)) { + close_event->ignore(); + return; + } + removeWorkArea(d.current_work_area_); + continue; + } + + QVector const ids = guiApp->viewIds(); + for (int i = 0; i != ids.size(); ++i) { + if (id_ == ids[i]) + continue; + if (guiApp->view(ids[i]).workArea(*b)) { + // FIXME 1: should we put an alert box here that the buffer + // is viewed elsewhere? + // FIXME 2: should we try to save this buffer in any case? + //saveBuffer(b); + + // This buffer is also opened in another view, so + // but close the associated work area nevertheless. + removeWorkArea(d.current_work_area_); + // but don't close it. + b = 0; + break; + } + } + if (b && !closeBuffer(*b, true)) { close_event->ignore(); return; } @@ -395,8 +432,8 @@ void GuiView::closeEvent(QCloseEvent * close_event) // Save toolbars configuration if (isFullScreen()) { - d.toolbars_->toggleFullScreen(!isFullScreen()); - updateToolbars(); + d.toolbars_->toggleFullScreen(!isFullScreen()); + updateDialogs(); } // Make sure the timer time out will not trigger a statusbar update. @@ -422,20 +459,7 @@ void GuiView::closeEvent(QCloseEvent * close_event) } guiApp->unregisterView(id_); - if (guiApp->viewCount() > 0) { - // Just close the window and do nothing else if this is not the - // last window. - close_event->accept(); - return; - } - - quitting = true; - - // this is the place where we leave the frontend. - // it is the only point at which we start quitting. close_event->accept(); - // quit the event loop - qApp->quit(); } @@ -524,14 +548,35 @@ void GuiView::on_currentWorkAreaChanged(GuiWorkArea * wa) this, SLOT(updateWindowTitle(GuiWorkArea *))); updateWindowTitle(wa); - updateToc(); - // Buffer-dependent dialogs should be updated or - // hidden. This should go here because some dialogs (eg ToC) - // require bv_->text. - updateBufferDependent(true); - updateToolbars(); - updateLayoutList(); - updateStatusBar(); + structureChanged(); + + // The document settings needs to be reinitialised. + updateDialog("document", ""); + + // Buffer-dependent dialogs must be updated. This is done here because + // some dialogs require buffer()->text. + updateDialogs(); +} + + +void GuiView::on_lastWorkAreaRemoved() +{ +#ifdef Q_WS_MACX + // On Mac close the view if there is no Tab open anymore, + // but only if no splitter is visible + if (!lyxrc.open_buffers_in_tabs && d.splitter_->count() == 1) { + TabWorkArea * twa = qobject_cast(d.splitter_->widget(0)); + if (twa && twa->count() == 0) { + // close the view, as no tab is open anymore + QTimer::singleShot(0, this, SLOT(close())); + } + } +#else + structureChanged(); + // The document settings needs to be reinitialised. + updateDialog("document", ""); + updateDialogs(); +#endif } @@ -572,17 +617,21 @@ bool GuiView::event(QEvent * e) // break; case QEvent::WindowActivate: { - guiApp->setCurrentView(*this); + if (this == guiApp->currentView()) { + setFocus(); + return QMainWindow::event(e); + } + guiApp->setCurrentView(this); if (d.current_work_area_) { BufferView & bv = d.current_work_area_->bufferView(); connectBufferView(bv); connectBuffer(bv.buffer()); // The document structure, name and dialogs might have // changed in another view. - updateBufferDependent(true); - updateToolbars(); - updateLayoutList(); - updateStatusBar(); + structureChanged(); + // The document settings needs to be reinitialised. + updateDialog("document", ""); + updateDialogs(); } else { setWindowTitle(qt_("LyX")); setWindowIconText(qt_("LyX")); @@ -592,12 +641,23 @@ bool GuiView::event(QEvent * e) } case QEvent::ShortcutOverride: { + + if (isFullScreen() && menuBar()->isHidden()) { + QKeyEvent * ke = static_cast(e); + // FIXME: we should also try to detect special LyX shortcut such as + // Alt-P and Alt-M. Right now there is a hack in + // GuiWorkArea::processKeySym() that hides again the menubar for + // those cases. + if (ke->modifiers() & Qt::AltModifier && ke->key() != Qt::Key_Alt) + menuBar()->show(); + return QMainWindow::event(e); + } + if (d.current_work_area_) // Nothing special to do. return QMainWindow::event(e); QKeyEvent * ke = static_cast(e); - // Let Qt handle menu access and the Tab keys to navigate keys to navigate // between controls. if (ke->modifiers() & Qt::AltModifier || ke->key() == Qt::Key_Tab @@ -713,6 +773,9 @@ TabWorkArea * GuiView::addTabWorkArea() TabWorkArea * twa = new TabWorkArea; QObject::connect(twa, SIGNAL(currentWorkAreaChanged(GuiWorkArea *)), this, SLOT(on_currentWorkAreaChanged(GuiWorkArea *))); + QObject::connect(twa, SIGNAL(lastWorkAreaRemoved()), + this, SLOT(on_lastWorkAreaRemoved())); + d.splitter_->addWidget(twa); d.stack_widget_->setCurrentWidget(d.splitter_); return twa; @@ -727,12 +790,7 @@ GuiWorkArea const * GuiView::currentWorkArea() const void GuiView::setCurrentWorkArea(GuiWorkArea * wa) { - BOOST_ASSERT(wa); - - // Changing work area can result from opening a file so - // update the toc in any case. - updateToc(); - + LASSERT(wa, /**/); d.current_work_area_ = wa; for (int i = 0; i != d.splitter_->count(); ++i) { if (d.tabWorkArea(i)->setCurrentWorkArea(wa)) @@ -743,11 +801,10 @@ void GuiView::setCurrentWorkArea(GuiWorkArea * wa) void GuiView::removeWorkArea(GuiWorkArea * wa) { - BOOST_ASSERT(wa); + LASSERT(wa, /**/); if (wa == d.current_work_area_) { disconnectBuffer(); disconnectBufferView(); - hideBufferDependent(); d.current_work_area_ = 0; } @@ -808,9 +865,6 @@ void GuiView::updateToolbars() d.toolbars_->update(math, table, review, mathmacrotemplate); } else d.toolbars_->update(false, false, false, false); - - // update read-only status of open dialogs. - checkStatus(); } @@ -832,7 +886,7 @@ Buffer const * GuiView::buffer() const void GuiView::setBuffer(Buffer * newBuffer) { - BOOST_ASSERT(newBuffer); + LASSERT(newBuffer, /**/); setBusy(true); GuiWorkArea * wa = workArea(*newBuffer); @@ -885,6 +939,15 @@ void GuiView::errors(string const & error_type) } +void GuiView::structureChanged() +{ + d.toc_models_.reset(view()); + // Navigator needs more than a simple update in this case. It needs to be + // rebuilt. + updateDialog("toc", ""); +} + + void GuiView::updateDialog(string const & name, string const & data) { if (!isDialogVisible(name)) @@ -896,7 +959,7 @@ void GuiView::updateDialog(string const & name, string const & data) Dialog * const dialog = it->second.get(); if (dialog->isVisibleView()) - dialog->updateData(data); + dialog->initialiseParams(data); } @@ -906,18 +969,6 @@ BufferView * GuiView::view() } -void GuiView::updateToc() -{ - updateDialog("toc", ""); -} - - -void GuiView::updateEmbeddedFiles() -{ - updateDialog("embedding", ""); -} - - void GuiView::autoSave() { LYXERR(Debug::INFO, "Running autoSave()"); @@ -934,9 +985,8 @@ void GuiView::resetAutosaveTimers() } -FuncStatus GuiView::getStatus(FuncRequest const & cmd) +bool GuiView::getStatus(FuncRequest const & cmd, FuncStatus & flag) { - FuncStatus flag; bool enable = true; Buffer * buf = buffer(); @@ -972,6 +1022,10 @@ FuncStatus GuiView::getStatus(FuncRequest const & cmd) flag.setOnOff(d.toolbars_->visible(cmd.getArg(0))); break; + case LFUN_UI_TOGGLE: + flag.setOnOff(isFullScreen()); + break; + case LFUN_DIALOG_TOGGLE: flag.setOnOff(isDialogVisible(cmd.getArg(0))); // fall through to set "enable" @@ -1022,10 +1076,6 @@ FuncStatus GuiView::getStatus(FuncRequest const & cmd) } case LFUN_INSET_APPLY: { - if (!buf) { - enable = false; - break; - } string const name = cmd.getArg(0); Inset * inset = getOpenInset(name); if (inset) { @@ -1033,47 +1083,60 @@ FuncStatus GuiView::getStatus(FuncRequest const & cmd) FuncStatus fs; if (!inset->getStatus(view()->cursor(), fr, fs)) { // Every inset is supposed to handle this - BOOST_ASSERT(false); + LASSERT(false, /**/); } flag |= fs; } else { FuncRequest fr(LFUN_INSET_INSERT, cmd.argument()); - flag |= getStatus(fr); + flag |= lyx::getStatus(fr); } enable = flag.enabled(); break; } + case LFUN_COMPLETION_INLINE: + if (!d.current_work_area_ + || !d.current_work_area_->completer().inlinePossible(view()->cursor())) + enable = false; + break; + + case LFUN_COMPLETION_POPUP: + if (!d.current_work_area_ + || !d.current_work_area_->completer().popupPossible(view()->cursor())) + enable = false; + break; + + case LFUN_COMPLETION_COMPLETE: + if (!d.current_work_area_ + || !d.current_work_area_->completer().inlinePossible(view()->cursor())) + enable = false; + break; + default: - if (!view()) { - enable = false; - break; - } + return false; } if (!enable) flag.enabled(false); - return flag; + return true; } static FileName selectTemplateFile() { - FileDialog dlg(_("Select template file")); - dlg.setButton1(_("Documents|#o#O"), from_utf8(lyxrc.document_path)); - dlg.setButton1(_("Templates|#T#t"), from_utf8(lyxrc.template_path)); + FileDialog dlg(qt_("Select template file")); + dlg.setButton1(qt_("Documents|#o#O"), toqstr(lyxrc.document_path)); + dlg.setButton1(qt_("Templates|#T#t"), toqstr(lyxrc.template_path)); - FileDialog::Result result = - dlg.open(from_utf8(lyxrc.template_path), - FileFilterList(_("LyX Documents (*.lyx)")), - docstring()); + FileDialog::Result result = dlg.open(toqstr(lyxrc.template_path), + QStringList(qt_("LyX Documents (*.lyx)"))); if (result.first == FileDialog::Later) return FileName(); - if (result.second.empty()) + if (result.second.isEmpty()) return FileName(); - return FileName(to_utf8(result.second)); + return FileName(fromqstr(result.second)); } @@ -1088,7 +1151,7 @@ Buffer * GuiView::loadDocument(FileName const & filename, bool tolastfiles) setBusy(false); return 0; } - + setBuffer(newBuffer); // scroll to the position when the file was last closed @@ -1120,20 +1183,18 @@ void GuiView::openDocument(string const & fname) string filename; if (fname.empty()) { - FileDialog dlg(_("Select document to open"), LFUN_FILE_OPEN); - dlg.setButton1(_("Documents|#o#O"), from_utf8(lyxrc.document_path)); - dlg.setButton2(_("Examples|#E#e"), - from_utf8(addPath(package().system_support().absFilename(), "examples"))); + FileDialog dlg(qt_("Select document to open"), LFUN_FILE_OPEN); + dlg.setButton1(qt_("Documents|#o#O"), toqstr(lyxrc.document_path)); + dlg.setButton2(qt_("Examples|#E#e"), + toqstr(addPath(package().system_support().absFilename(), "examples"))); FileDialog::Result result = - dlg.open(from_utf8(initpath), - FileFilterList(_("LyX Documents (*.lyx)")), - docstring()); + dlg.open(toqstr(initpath), QStringList(qt_("LyX Documents (*.lyx)"))); if (result.first == FileDialog::Later) return; - filename = to_utf8(result.second); + filename = fromqstr(result.second); // check selected filename if (filename.empty()) { @@ -1166,6 +1227,7 @@ void GuiView::openDocument(string const & fname) Buffer * buf = loadDocument(fullname); if (buf) { updateLabels(*buf); + setBuffer(buf); buf->errors("Parse"); str2 = bformat(_("Document %1$s opened."), disp_fn); @@ -1179,7 +1241,7 @@ void GuiView::openDocument(string const & fname) static bool import(GuiView * lv, FileName const & filename, string const & format, ErrorList & errorList) { - FileName const lyxfile(changeExtension(filename.absFilename(), ".lyx")); + FileName const lyxfile(support::changeExtension(filename.absFilename(), ".lyx")); string loader_format; vector loaders = theConverters().loaders(); @@ -1190,7 +1252,7 @@ static bool import(GuiView * lv, FileName const & filename, continue; string const tofile = - changeExtension(filename.absFilename(), + support::changeExtension(filename.absFilename(), formats.extension(*it)); if (!theConverters().convert(0, filename, FileName(tofile), filename, format, *it, errorList)) @@ -1221,7 +1283,7 @@ static bool import(GuiView * lv, FileName const & filename, lv->setBuffer(b); bool as_paragraphs = loader_format == "textparagraph"; string filename2 = (loader_format == format) ? filename.absFilename() - : changeExtension(filename.absFilename(), + : support::changeExtension(filename.absFilename(), formats.extension(loader_format)); lv->view()->insertPlaintextFile(FileName(filename2), as_paragraphs); theLyXFunc().setLyXView(lv); @@ -1254,10 +1316,10 @@ void GuiView::importDocument(string const & argument) docstring const text = bformat(_("Select %1$s file to import"), formats.prettyName(format)); - FileDialog dlg(text, LFUN_BUFFER_IMPORT); - dlg.setButton1(_("Documents|#o#O"), from_utf8(lyxrc.document_path)); - dlg.setButton2(_("Examples|#E#e"), - from_utf8(addPath(package().system_support().absFilename(), "examples"))); + FileDialog dlg(toqstr(text), LFUN_BUFFER_IMPORT); + dlg.setButton1(qt_("Documents|#o#O"), toqstr(lyxrc.document_path)); + dlg.setButton2(qt_("Examples|#E#e"), + toqstr(addPath(package().system_support().absFilename(), "examples"))); docstring filter = formats.prettyName(format); filter += " (*."; @@ -1266,14 +1328,12 @@ void GuiView::importDocument(string const & argument) filter += ')'; FileDialog::Result result = - dlg.open(from_utf8(initpath), - FileFilterList(filter), - docstring()); + dlg.open(toqstr(initpath), fileFilters(toqstr(filter))); if (result.first == FileDialog::Later) return; - filename = to_utf8(result.second); + filename = fromqstr(result.second); // check selected filename if (filename.empty()) @@ -1284,9 +1344,9 @@ void GuiView::importDocument(string const & argument) return; // get absolute path of file - FileName const fullname(makeAbsPath(filename)); + FileName const fullname(support::makeAbsPath(filename)); - FileName const lyxfile(changeExtension(fullname.absFilename(), ".lyx")); + FileName const lyxfile(support::changeExtension(fullname.absFilename(), ".lyx")); // Check if the document already is open Buffer * buf = theBufferList().getBuffer(lyxfile.absFilename()); @@ -1375,22 +1435,20 @@ void GuiView::insertLyXFile(docstring const & fname) initpath = trypath; // FIXME UNICODE - FileDialog dlg(_("Select LyX document to insert"), LFUN_FILE_INSERT); - dlg.setButton1(_("Documents|#o#O"), from_utf8(lyxrc.document_path)); - dlg.setButton2(_("Examples|#E#e"), - from_utf8(addPath(package().system_support().absFilename(), + FileDialog dlg(qt_("Select LyX document to insert"), LFUN_FILE_INSERT); + dlg.setButton1(qt_("Documents|#o#O"), toqstr(lyxrc.document_path)); + dlg.setButton2(qt_("Examples|#E#e"), + toqstr(addPath(package().system_support().absFilename(), "examples"))); - FileDialog::Result result = - dlg.open(from_utf8(initpath), - FileFilterList(_("LyX Documents (*.lyx)")), - docstring()); + FileDialog::Result result = dlg.open(toqstr(initpath), + QStringList(qt_("LyX Documents (*.lyx)"))); if (result.first == FileDialog::Later) return; // FIXME UNICODE - filename.set(to_utf8(result.second)); + filename.set(fromqstr(result.second)); // check selected filename if (filename.empty()) { @@ -1418,17 +1476,17 @@ void GuiView::insertPlaintextFile(docstring const & fname, return; } - FileDialog dlg(_("Select file to insert"), (asParagraph ? + FileDialog dlg(qt_("Select file to insert"), (asParagraph ? LFUN_FILE_INSERT_PLAINTEXT_PARA : LFUN_FILE_INSERT_PLAINTEXT)); - FileDialog::Result result = dlg.open(from_utf8(bv->buffer().filePath()), - FileFilterList(), docstring()); + FileDialog::Result result = dlg.open(toqstr(bv->buffer().filePath()), + QStringList()); if (result.first == FileDialog::Later) return; // FIXME UNICODE - filename.set(to_utf8(result.second)); + filename.set(fromqstr(result.second)); // check selected filename if (filename.empty()) { @@ -1448,32 +1506,30 @@ bool GuiView::renameBuffer(Buffer & b, docstring const & newname) if (!newname.empty()) { // FIXME UNICODE - fname = makeAbsPath(to_utf8(newname), oldname.onlyPath().absFilename()); + fname = support::makeAbsPath(to_utf8(newname), oldname.onlyPath().absFilename()); } else { // Switch to this Buffer. setBuffer(&b); /// No argument? Ask user through dialog. // FIXME UNICODE - FileDialog dlg(_("Choose a filename to save document as"), + FileDialog dlg(qt_("Choose a filename to save document as"), LFUN_BUFFER_WRITE_AS); - dlg.setButton1(_("Documents|#o#O"), from_utf8(lyxrc.document_path)); - dlg.setButton2(_("Templates|#T#t"), from_utf8(lyxrc.template_path)); + dlg.setButton1(qt_("Documents|#o#O"), toqstr(lyxrc.document_path)); + dlg.setButton2(qt_("Templates|#T#t"), toqstr(lyxrc.template_path)); if (!isLyXFilename(fname.absFilename())) fname.changeExtension(".lyx"); - FileFilterList const filter(_("LyX Documents (*.lyx)")); - FileDialog::Result result = - dlg.save(from_utf8(fname.onlyPath().absFilename()), - filter, - from_utf8(fname.onlyFileName())); + dlg.save(toqstr(fname.onlyPath().absFilename()), + QStringList(qt_("LyX Documents (*.lyx)")), + toqstr(fname.onlyFileName())); if (result.first == FileDialog::Later) return false; - fname.set(to_utf8(result.second)); + fname.set(fromqstr(result.second)); if (fname.empty()) return false; @@ -1557,9 +1613,16 @@ bool GuiView::closeBuffer() } -bool GuiView::closeBuffer(Buffer & buf) +bool GuiView::closeBuffer(Buffer & buf, bool tolastopened) { + // goto bookmark to update bookmark pit. + //FIXME: we should update only the bookmarks related to this buffer! + for (size_t i = 0; i < LyX::ref().session().bookmarks().size(); ++i) + theLyXFunc().gotoBookmark(i+1, false, false); + if (buf.isClean() || buf.paragraphs().empty()) { + if (buf.masterBuffer() == &buf && tolastopened) + LyX::ref().session().lastOpened().add(buf.fileName()); theBufferList().release(&buf); return true; } @@ -1573,6 +1636,10 @@ bool GuiView::closeBuffer(Buffer & buf) else file = buf.fileName().displayName(30); + // Bring this window to top before asking questions. + raise(); + activateWindow(); + docstring const text = bformat(_("The document %1$s has unsaved changes." "\n\nDo you want to save the document or discard the changes?"), file); int const ret = Alert::prompt(_("Save changed document?"), @@ -1596,7 +1663,7 @@ bool GuiView::closeBuffer(Buffer & buf) // save file names to .lyx/session // if master/slave are both open, do not save slave since it // will be automatically loaded when the master is loaded - if (buf.masterBuffer() == &buf) + if (buf.masterBuffer() == &buf && tolastopened) LyX::ref().session().lastOpened().add(buf.fileName()); theBufferList().release(&buf); @@ -1604,29 +1671,15 @@ bool GuiView::closeBuffer(Buffer & buf) } -bool GuiView::quitWriteAll() -{ - while (!theBufferList().empty()) { - Buffer * b = theBufferList().first(); - if (!closeBuffer(*b)) - return false; - } - return true; -} - - bool GuiView::dispatch(FuncRequest const & cmd) { - BufferView * bv = view(); + BufferView * bv = view(); // By default we won't need any update. if (bv) bv->cursor().updateFlags(Update::None); + bool dispatched = true; switch(cmd.action) { - case LFUN_FILE_OPEN: - openDocument(to_utf8(cmd.argument())); - break; - case LFUN_BUFFER_IMPORT: importDocument(to_utf8(cmd.argument())); break; @@ -1654,7 +1707,7 @@ bool GuiView::dispatch(FuncRequest const & cmd) break; case LFUN_MENU_OPEN: - if (QMenu * menu = guiApp->menus().menu(toqstr(cmd.argument()))) + if (QMenu * menu = guiApp->menus().menu(toqstr(cmd.argument()), *this)) menu->exec(QCursor::pos()); break; @@ -1687,10 +1740,10 @@ bool GuiView::dispatch(FuncRequest const & cmd) // We cannot use a for loop as the buffer list cycles. Buffer * b = first; do { - if (b->isClean()) - continue; - saveBuffer(*b); - LYXERR(Debug::ACTION, "Saved " << b->absFileName()); + if (!b->isClean()) { + saveBuffer(*b); + LYXERR(Debug::ACTION, "Saved " << b->absFileName()); + } b = theBufferList().next(b); } while (b != first); message(_("All documents saved.")); @@ -1756,8 +1809,6 @@ bool GuiView::dispatch(FuncRequest const & cmd) break; case LFUN_DIALOG_HIDE: { - if (quitting) - break; guiApp->hideDialogs(to_utf8(cmd.argument()), 0); break; } @@ -1797,6 +1848,7 @@ bool GuiView::dispatch(FuncRequest const & cmd) } case LFUN_INSET_APPLY: { + view()->cursor().recordUndoFullDocument(); string const name = cmd.getArg(0); Inset * inset = getOpenInset(name); if (inset) { @@ -1815,6 +1867,11 @@ bool GuiView::dispatch(FuncRequest const & cmd) setFocus(); break; + case LFUN_COMPLETION_INLINE: + if (d.current_work_area_) + d.current_work_area_->completer().showInline(); + break; + case LFUN_SPLIT_VIEW: if (Buffer * buf = buffer()) { string const orientation = cmd.getArg(0); @@ -1827,15 +1884,41 @@ bool GuiView::dispatch(FuncRequest const & cmd) break; case LFUN_CLOSE_TAB_GROUP: - if (TabWorkArea * twa = d.currentTabWorkArea()) + if (TabWorkArea * twa = d.currentTabWorkArea()) { delete twa; + twa = d.currentTabWorkArea(); + // Switch to the next GuiWorkArea in the found TabWorkArea. + d.current_work_area_ = twa? twa->currentWorkArea() : 0; + if (d.splitter_->count() == 0) + // No more work area, switch to the background widget. + d.setBackground(); + } + break; + + case LFUN_COMPLETION_POPUP: + if (d.current_work_area_) + d.current_work_area_->completer().showPopup(); + break; + + + case LFUN_COMPLETION_COMPLETE: + if (d.current_work_area_) + d.current_work_area_->completer().tab(); break; default: - return false; + dispatched = false; + break; } - return true; + if (isFullScreen()) { + if (menuBar()->isVisible()) + menuBar()->hide(); + if (statusBar()->isVisible()) + statusBar()->hide(); + } + + return dispatched; } @@ -1867,18 +1950,17 @@ void GuiView::lfunUiToggle(FuncRequest const & cmd) int l, t, r, b; getContentsMargins(&l, &t, &r, &b); //are the frames in default state? + d.current_work_area_->setFrameStyle(QFrame::NoFrame); if (l == 0) { - d.current_work_area_->setFrameStyle(QFrame::NoFrame); setContentsMargins(-2, -2, -2, -2); } else { - d.current_work_area_->setFrameStyle(QFrame::NoFrame); setContentsMargins(0, 0, 0, 0); } return; } #endif if (arg != "fullscreen") { - message(bformat(_("LFUN_UI_TOGGLE %1$s unknown command!"), from_utf8(arg))); + message(bformat("LFUN_UI_TOGGLE " + _("%1$s unknown command!"), from_utf8(arg))); return; } @@ -1891,7 +1973,7 @@ void GuiView::lfunUiToggle(FuncRequest const & cmd) #if QT_VERSION >= 0x040300 setContentsMargins(0, 0, 0, 0); #endif - showNormal(); + setWindowState(windowState() ^ Qt::WindowFullScreen); menuBar()->show(); statusBar()->show(); } else { @@ -1900,7 +1982,7 @@ void GuiView::lfunUiToggle(FuncRequest const & cmd) #if QT_VERSION >= 0x040300 setContentsMargins(-2, -2, -2, -2); #endif - showFullScreen(); + setWindowState(windowState() ^ Qt::WindowFullScreen); statusBar()->hide(); menuBar()->hide(); } @@ -1927,9 +2009,15 @@ void GuiView::restartCursor() if (d.current_work_area_) d.current_work_area_->startBlinkingCursor(); - // Take this occasion to update the toobars and layout list. - updateLayoutList(); - updateToolbars(); + // Take this occasion to update the other GUI elements. + updateDialogs(); +} + + +void GuiView::updateCompletion(Cursor & cur, bool start, bool keep) +{ + if (d.current_work_area_) + d.current_work_area_->completer().updateVisibility(cur, start, keep); } namespace { @@ -1940,10 +2028,10 @@ namespace { char const * const dialognames[] = { "aboutlyx", "bibitem", "bibtex", "box", "branch", "changes", "character", -"citation", "document", "embedding", "errorlist", "ert", "external", "file", +"citation", "document", "errorlist", "ert", "external", "file", "findreplace", "float", "graphics", "include", "index", "nomenclature", "label", "log", "mathdelimiter", "mathmatrix", "note", "paragraph", "prefs", "print", -"ref", "sendto", "spellchecker", "symbols", "tabular", "tabularcreate", +"ref", "sendto", "space", "spellchecker", "symbols", "tabular", "tabularcreate", #ifdef HAVE_LIBAIKSAURUS "thesaurus", @@ -1981,7 +2069,7 @@ void GuiView::resetDialogs() // FIXME: the "math panels" toolbar takes an awful lot of time to // initialise so we don't do that for the time being. //d.toolbars_->init(); - guiApp->menus().fillMenuBar(this); + guiApp->menus().fillMenuBar(menuBar(), this); if (d.layout_) d.layout_->updateContents(true); // Now update controls with current buffer. @@ -2036,13 +2124,6 @@ bool GuiView::isDialogVisible(string const & name) const void GuiView::hideDialog(string const & name, Inset * inset) { - // Don't send the signal if we are quitting, because on MSVC it is - // destructed before the cut stack in CutAndPaste.cpp, and this method - // is called from some inset destructor if the cut stack is not empty - // on exit. - if (quitting) - return; - map::const_iterator it = d.dialogs_.find(name); if (it == d.dialogs_.end()) return; @@ -2087,57 +2168,22 @@ void GuiView::hideAll() const } -void GuiView::hideBufferDependent() const +void GuiView::updateDialogs() { map::const_iterator it = d.dialogs_.begin(); map::const_iterator end = d.dialogs_.end(); for(; it != end; ++it) { Dialog * dialog = it->second.get(); - if (dialog->isBufferDependent()) - dialog->hideView(); - } -} - - -void GuiView::updateBufferDependent(bool switched) const -{ - map::const_iterator it = d.dialogs_.begin(); - map::const_iterator end = d.dialogs_.end(); - - for(; it != end; ++it) { - Dialog * dialog = it->second.get(); - if (!dialog->isVisibleView()) - continue; - if (switched && dialog->isBufferDependent()) { - if (dialog->initialiseParams("")) - dialog->updateView(); - else - dialog->hideView(); - } else { - // A bit clunky, but the dialog will request - // that the kernel provides it with the necessary - // data. - dialog->updateDialog(); - } - } -} - - -void GuiView::checkStatus() -{ - map::const_iterator it = d.dialogs_.begin(); - map::const_iterator end = d.dialogs_.end(); - - for(; it != end; ++it) { - Dialog * const dialog = it->second.get(); if (dialog && dialog->isVisibleView()) dialog->checkStatus(); } + updateToolbars(); + updateLayoutList(); + updateStatusBar(); } - // will be replaced by a proper factory... Dialog * createGuiAbout(GuiView & lv); Dialog * createGuiBibitem(GuiView & lv); @@ -2154,6 +2200,7 @@ Dialog * createGuiERT(GuiView & lv); Dialog * createGuiExternal(GuiView & lv); Dialog * createGuiFloat(GuiView & lv); Dialog * createGuiGraphics(GuiView & lv); +Dialog * createGuiHSpace(GuiView & lv); Dialog * createGuiInclude(GuiView & lv); Dialog * createGuiLabel(GuiView & lv); Dialog * createGuiListings(GuiView & lv); @@ -2183,7 +2230,7 @@ Dialog * createGuiWrap(GuiView & lv); Dialog * GuiView::build(string const & name) { - BOOST_ASSERT(isValidName(name)); + LASSERT(isValidName(name), /**/); if (name == "aboutlyx") return createGuiAbout(*this); @@ -2243,6 +2290,8 @@ Dialog * GuiView::build(string const & name) return createGuiRef(*this); if (name == "sendto") return createGuiSendTo(*this); + if (name == "space") + return createGuiHSpace(*this); if (name == "spellchecker") return createGuiSpellchecker(*this); if (name == "symbols")