]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt4/GuiApplication.cpp
Amend f441590c
[lyx.git] / src / frontends / qt4 / GuiApplication.cpp
index 6fd3eb479f91734e7c9334fffff0f7ef6043a34b..4b6e769ddf89d1feba72f20a3ec72c700f9eb982 100644 (file)
@@ -17,7 +17,6 @@
 #include "ColorCache.h"
 #include "ColorSet.h"
 #include "GuiClipboard.h"
-#include "GuiImage.h"
 #include "GuiKeySymbol.h"
 #include "GuiSelection.h"
 #include "GuiView.h"
 
 #include "Buffer.h"
 #include "BufferList.h"
+#include "BufferParams.h"
 #include "BufferView.h"
 #include "CmdDef.h"
 #include "Color.h"
+#include "CutAndPaste.h"
+#include "ErrorList.h"
 #include "Font.h"
 #include "FuncRequest.h"
 #include "FuncStatus.h"
@@ -54,6 +56,8 @@
 #include "Thesaurus.h"
 #include "version.h"
 
+#include "insets/InsetText.h"
+
 #include "support/convert.h"
 #include "support/debug.h"
 #include "support/ExceptionMessage.h"
 #include "support/lassert.h"
 #include "support/lstrings.h"
 #include "support/lyxalgo.h" // sorted
+#include "support/textutils.h"
 #include "support/Messages.h"
 #include "support/os.h"
 #include "support/Package.h"
-#include "support/PathChanger.h"
-#include "support/Systemcall.h"
+#include "support/TempFile.h"
 
-#ifdef Q_WS_MACX
+#ifdef Q_OS_MAC
 #include "support/AppleScript.h"
 #include "support/linkback/LinkBackProxy.h"
 #endif
@@ -81,6 +85,7 @@
 #include <QByteArray>
 #include <QClipboard>
 #include <QDateTime>
+#include <QDesktopWidget>
 #include <QDir>
 #include <QEvent>
 #include <QEventLoop>
 #include <X11/Xlib.h>
 #undef CursorShape
 #undef None
+#elif defined(QPA_XCB)
+#include <xcb/xcb.h>
 #endif
 
-#ifdef Q_WS_WIN
+#if (QT_VERSION < 0x050000) || (QT_VERSION >= 0x050400)
+#if defined(Q_OS_WIN) || defined(Q_CYGWIN_WIN)
+#if (QT_VERSION < 0x050000)
 #include <QWindowsMime>
+#define QWINDOWSMIME QWindowsMime
+#else
+#include <QWinMime>
+#define QWINDOWSMIME QWinMime
+#endif
 #ifdef Q_CC_GNU
 #include <wtypes.h>
 #endif
 #include <objidl.h>
-#endif // Q_WS_WIN
+#endif
+#endif
 
-#ifdef Q_WS_MACX
+#ifdef Q_OS_MAC
 #include <QMacPasteboardMime>
-#endif // Q_WS_MACX
+#endif // Q_OS_MAC
 
 #include "support/bind.h"
 #include <boost/crc.hpp>
@@ -155,7 +170,7 @@ namespace lyx {
 
 frontend::Application * createApplication(int & argc, char * argv[])
 {
-#ifndef Q_WS_X11
+#if !defined(Q_WS_X11) && !defined(QPA_XCB)
        // prune -geometry argument(s) by shifting
        // the following ones 2 places down.
        for (int i = 0 ; i < argc ; ++i) {
@@ -179,14 +194,15 @@ frontend::Application * createApplication(int & argc, char * argv[])
 void setLocale()
 {
        QLocale theLocale;
+       string code;
        if (lyxrc.gui_language == "auto") {
                theLocale = QLocale::system();
+               code = fromqstr(theLocale.name());
        } else {
                Language const * l = languages.getLanguage(lyxrc.gui_language);
-               string const code = l ? l->code() : string();
+               code = l ? l->code() : "C";
                theLocale = QLocale(toqstr(code));
        }
-       string const code = fromqstr(theLocale.name());
        // Qt tries to outsmart us and transforms en_US to C.
        Messages::guiLanguage((code == "C") ? "en_US" : code);
        QLocale::setDefault(theLocale);
@@ -233,13 +249,13 @@ vector<string> loadableImageFormats()
 
 namespace {
 
-struct PngMap {
+struct ImgMap {
        QString key;
        QString value;
 };
 
 
-bool operator<(PngMap const & lhs, PngMap const & rhs)
+bool operator<(ImgMap const & lhs, ImgMap const & rhs)
 {
        return lhs.key < rhs.key;
 }
@@ -248,7 +264,7 @@ bool operator<(PngMap const & lhs, PngMap const & rhs)
 class CompareKey {
 public:
        CompareKey(QString const & name) : name_(name) {}
-       bool operator()(PngMap const & other) const { return other.key == name_; }
+       bool operator()(ImgMap const & other) const { return other.key == name_; }
 private:
        QString const name_;
 };
@@ -258,7 +274,7 @@ private:
 // Upper case comes before lower case
 // Please don't change the formatting, this list is parsed by
 // development/tools/generate_symbols_images.py.
-PngMap sorted_png_map[] = {
+ImgMap sorted_img_map[] = {
        { "Arrownot", "arrownot2"},
        { "Arrowvert", "arrowvert2"},
        { "Bowtie", "bowtie2" },
@@ -327,12 +343,16 @@ PngMap sorted_png_map[] = {
        { "XBox", "xbox3" },
        { "Xbox", "xbox2" },
        { "Xi", "xi2" },
+       { "lVert", "vert2" },
+       { "lvert", "vert" },
        { "nLeftarrow", "nleftarrow2" },
        { "nLeftrightarrow", "nleftrightarrow2" },
        { "nRightarrow", "nrightarrow2" },
        { "nVDash", "nvdash3" },
        { "nVdash", "nvdash4" },
        { "nvDash", "nvdash2" },
+       { "rVert", "vert2" },
+       { "rvert", "vert" },
        { "textrm \\AA", "textrm_AA"},
        { "textrm \\O", "textrm_O"},
        { "vDash", "vdash2" },
@@ -350,17 +370,16 @@ PngMap sorted_png_map[] = {
 };
 
 
-size_t const nr_sorted_png_map = sizeof(sorted_png_map) / sizeof(PngMap);
+size_t const nr_sorted_img_map = sizeof(sorted_img_map) / sizeof(ImgMap);
 
 // This list specifies which system's theme icon is related to which lyx
 // command. It was based on:
 // http://standards.freedesktop.org/icon-naming-spec/icon-naming-spec-latest.html
 // this must be sorted alphabetically
 // Upper case comes before lower case
-PngMap sorted_theme_icon_map[] = {
+ImgMap sorted_theme_icon_map[] = {
        { "bookmark-goto 0", "go-jump" },
        { "buffer-new", "document-new" },
-       { "buffer-print", "document-print" },
        { "buffer-write", "document-save" },
        { "buffer-write-as", "document-save-as" },
        { "buffer-zoom-in", "zoom-in" },
@@ -369,7 +388,6 @@ PngMap sorted_theme_icon_map[] = {
        { "cut", "edit-cut" },
        { "depth-decrement", "format-indent-less" },
        { "depth-increment", "format-indent-more" },
-       { "dialog-show print", "document-print" },
        { "dialog-show spellchecker", "tools-check-spelling" },
        { "dialog-show-new-inset graphics", "insert-image" },
        { "dialog-toggle findreplaceadv", "edit-find-replace" },
@@ -386,42 +404,42 @@ PngMap sorted_theme_icon_map[] = {
        { "window-new", "window-new" }
 };
 
-size_t const nr_sorted_theme_icon_map = sizeof(sorted_theme_icon_map) / sizeof(PngMap);
+size_t const nr_sorted_theme_icon_map = sizeof(sorted_theme_icon_map) / sizeof(ImgMap);
 
 
-QString findPng(QString const & name)
+QString findImg(QString const & name)
 {
-       PngMap const * const begin = sorted_png_map;
-       PngMap const * const end = begin + nr_sorted_png_map;
+       ImgMap const * const begin = sorted_img_map;
+       ImgMap const * const end = begin + nr_sorted_img_map;
        LATTEST(sorted(begin, end));
 
-       PngMap const * const it = find_if(begin, end, CompareKey(name));
+       ImgMap const * const it = find_if(begin, end, CompareKey(name));
 
-       QString png_name;
+       QString img_name;
        if (it != end) {
-               png_name = it->value;
+               img_name = it->value;
        } else {
-               png_name = name;
-               png_name.replace('_', "underscore");
-               png_name.replace(' ', '_');
+               img_name = name;
+               img_name.replace('_', "underscore");
+               img_name.replace(' ', '_');
 
                // This way we can have "math-delim { }" on the toolbar.
-               png_name.replace('(', "lparen");
-               png_name.replace(')', "rparen");
-               png_name.replace('[', "lbracket");
-               png_name.replace(']', "rbracket");
-               png_name.replace('{', "lbrace");
-               png_name.replace('}', "rbrace");
-               png_name.replace('|', "bars");
-               png_name.replace(',', "thinspace");
-               png_name.replace(':', "mediumspace");
-               png_name.replace(';', "thickspace");
-               png_name.replace('!', "negthinspace");
+               img_name.replace('(', "lparen");
+               img_name.replace(')', "rparen");
+               img_name.replace('[', "lbracket");
+               img_name.replace(']', "rbracket");
+               img_name.replace('{', "lbrace");
+               img_name.replace('}', "rbrace");
+               img_name.replace('|', "bars");
+               img_name.replace(',', "thinspace");
+               img_name.replace(':', "mediumspace");
+               img_name.replace(';', "thickspace");
+               img_name.replace('!', "negthinspace");
        }
 
-       LYXERR(Debug::GUI, "findPng(" << name << ")\n"
-               << "Looking for math PNG called \"" << png_name << '"');
-       return png_name;
+       LYXERR(Debug::GUI, "findImg(" << name << ")\n"
+               << "Looking for math icon called \"" << img_name << '"');
+       return img_name;
 }
 
 } // namespace anon
@@ -429,11 +447,11 @@ QString findPng(QString const & name)
 
 QString themeIconName(QString const & action)
 {
-       PngMap const * const begin = sorted_theme_icon_map;
-       PngMap const * const end = begin + nr_sorted_theme_icon_map;
+       ImgMap const * const begin = sorted_theme_icon_map;
+       ImgMap const * const end = begin + nr_sorted_theme_icon_map;
        LASSERT(sorted(begin, end), /**/);
 
-       PngMap const * const it = find_if(begin, end, CompareKey(action));
+       ImgMap const * const it = find_if(begin, end, CompareKey(action));
 
        if (it != end)
                return it->value;
@@ -451,13 +469,13 @@ QString iconName(FuncRequest const & f, bool unknown)
        case LFUN_MATH_INSERT:
                if (!f.argument().empty()) {
                        path = "math/";
-                       name1 = findPng(toqstr(f.argument()).mid(1));
+                       name1 = findImg(toqstr(f.argument()).mid(1));
                }
                break;
        case LFUN_MATH_DELIM:
        case LFUN_MATH_BIGDELIM:
                path = "math/";
-               name1 = findPng(toqstr(f.argument()));
+               name1 = findImg(toqstr(f.argument()));
                break;
        case LFUN_CALL:
                path = "commands/";
@@ -499,13 +517,14 @@ QString iconName(FuncRequest const & f, bool unknown)
 
        QStringList imagedirs;
        imagedirs << "images/" << "images/ipa/";
-       for (int i = 0; i < imagedirs.size(); ++i) { 
+       search_mode mode = theGuiApp()->imageSearchMode();
+       for (int i = 0; i < imagedirs.size(); ++i) {
                QString imagedir = imagedirs.at(i) + path;
-               FileName fname = imageLibFileSearch(imagedir, name1, "png");
+               FileName fname = imageLibFileSearch(imagedir, name1, "svgz,png", mode);
                if (fname.exists())
                        return toqstr(fname.absFileName());
 
-               fname = imageLibFileSearch(imagedir, name2, "png");
+               fname = imageLibFileSearch(imagedir, name2, "svgz,png", mode);
                if (fname.exists())
                        return toqstr(fname.absFileName());
        }
@@ -516,55 +535,81 @@ QString iconName(FuncRequest const & f, bool unknown)
                LYXERR0("Directory " << path << " not found in resource!");
                return QString();
        }
-       name1 += ".png";
-       if (res.exists(name1))
-               return path + name1;
+       if (res.exists(name1 + ".svgz"))
+               return path + name1 + ".svgz";
+       else if (res.exists(name1 + ".png"))
+               return path + name1 + ".png";
 
-       name2 += ".png";
-       if (res.exists(name2))
-               return path + name2;
+       if (res.exists(name2 + ".svgz"))
+               return path + name2 + ".svgz";
+       else if (res.exists(name2 + ".png"))
+               return path + name2 + ".png";
 
        LYXERR(Debug::GUI, "Cannot find icon with filename "
-                          << "\"" << name1 << "\""
+                          << "\"" << name1 << ".{svgz,png}\""
                           << " or filename "
-                          << "\"" << name2 << "\""
+                          << "\"" << name2 << ".{svgz,png}\""
                           << " for command \""
                           << lyxaction.getActionName(f.action())
                           << '(' << to_utf8(f.argument()) << ")\"");
 
        if (unknown) {
                QString imagedir = "images/";
-               FileName fname = imageLibFileSearch(imagedir, "unknown", "png");
+               FileName fname = imageLibFileSearch(imagedir, "unknown", "svgz,png", mode);
                if (fname.exists())
                        return toqstr(fname.absFileName());
-               return QString(":/images/unknown.png");
+               return QString(":/images/unknown.svgz");
        }
 
        return QString();
 }
 
+
+bool getPixmap(QPixmap & pixmap, QString const & path)
+{
+       if (pixmap.load(path)) {
+#if QT_VERSION >= 0x050000
+               if (path.endsWith(".svgz") || path.endsWith(".svg") ) {
+                       GuiApplication const * guiApp = theGuiApp();
+                       if (guiApp != 0) {
+                               pixmap.setDevicePixelRatio(guiApp->pixelRatio());
+                       }
+               }
+#endif
+               return true;
+       }
+       return false;
+}
+
+
 QPixmap getPixmap(QString const & path, QString const & name, QString const & ext)
 {
-       QPixmap pixmap;
        QString imagedir = path;
-       FileName fname = imageLibFileSearch(imagedir, name, ext);
-       QString path1 = toqstr(fname.absFileName());
-       QString path2 = ":/" + path + name + "." + ext;
+       FileName fname = imageLibFileSearch(imagedir, name, ext, theGuiApp()->imageSearchMode());
+       QString fpath = toqstr(fname.absFileName());
+       QPixmap pixmap = QPixmap();
 
-       if (pixmap.load(path1)) {
+       if (getPixmap(pixmap, fpath)) {
                return pixmap;
        }
-       else if (pixmap.load(path2)) {
-               return pixmap;
+       
+       QStringList exts = ext.split(",");
+       fpath = ":/" + path + name + ".";
+       for (int i = 0; i < exts.size(); ++i) {
+               if (getPixmap(pixmap, fpath + exts.at(i))) {
+                       return pixmap;
+               }
        }
 
+       bool const list = ext.contains(",");
        LYXERR0("Cannot load pixmap \""
-               << path << name << '.' << ext
-               << "\", please verify resource system!");
+               << path << name << "." << (list ? "{" : "") << ext
+               << (list ? "}" : "") << "\", please verify resource system!");
 
        return QPixmap();
 }
 
+
 QIcon getIcon(FuncRequest const & f, bool unknown)
 {
 #if (QT_VERSION >= 0x040600)
@@ -583,13 +628,13 @@ QIcon getIcon(FuncRequest const & f, bool unknown)
                return QIcon();
 
        //LYXERR(Debug::GUI, "Found icon: " << icon);
-       QPixmap pm;
-       if (!pm.load(icon)) {
+       QPixmap pixmap = QPixmap();
+       if (!getPixmap(pixmap,icon)) {
                LYXERR0("Cannot load icon " << icon << " please verify resource system!");
                return QIcon();
        }
 
-       return QIcon(pm);
+       return QIcon(pixmap);
 }
 
 
@@ -626,9 +671,15 @@ public:
                : QTranslator(parent)
        {}
 
+#if QT_VERSION >= 0x050000
+       virtual QString translate(const char * /* context */,
+               const char *sourceText,
+               const char * /* disambiguation */ = 0, int /* n */ = -1) const
+#else
        QString translate(const char * /*context*/,
          const char * sourceText,
          const char * /*comment*/ = 0) const
+#endif
        {
                string const s = sourceText;
                if (s == N_("About %1") || s == N_("Preferences")
@@ -639,29 +690,7 @@ public:
        }
 };
 
-class GlobalMenuBar : public QMenuBar
-{
-public:
-       ///
-       GlobalMenuBar() : QMenuBar(0) {}
-
-       ///
-       bool event(QEvent * e)
-       {
-               if (e->type() == QEvent::ShortcutOverride) {
-                       //          && activeWindow() == 0) {
-                       QKeyEvent * ke = static_cast<QKeyEvent*>(e);
-                       KeySymbol sym;
-                       setKeySymbol(&sym, ke);
-                       guiApp->processKeySym(sym, q_key_state(ke->modifiers()));
-                       e->accept();
-                       return true;
-               }
-               return false;
-       }
-};
-
-#ifdef Q_WS_MACX
+#ifdef Q_OS_MAC
 // QMacPasteboardMimeGraphics can only be compiled on Mac.
 
 class QMacPasteboardMimeGraphics : public QMacPasteboardMime
@@ -721,7 +750,8 @@ public:
 ////////////////////////////////////////////////////////////////////////
 // Windows specific stuff goes here...
 
-#ifdef Q_WS_WIN
+#if (QT_VERSION < 0x050000) || (QT_VERSION >= 0x050400)
+#if defined(Q_OS_WIN) || defined(Q_CYGWIN_WIN)
 // QWindowsMimeMetafile can only be compiled on Windows.
 
 static FORMATETC cfFromMime(QString const & mimetype)
@@ -741,7 +771,7 @@ static FORMATETC cfFromMime(QString const & mimetype)
 }
 
 
-class QWindowsMimeMetafile : public QWindowsMime {
+class QWindowsMimeMetafile : public QWINDOWSMIME {
 public:
        QWindowsMimeMetafile() {}
 
@@ -818,7 +848,8 @@ public:
        }
 };
 
-#endif // Q_WS_WIN
+#endif
+#endif
 
 
 /// Allows to check whether ESC was pressed during a long operation
@@ -851,8 +882,19 @@ public:
                case QEvent::Show:
                case QEvent::Hide:
                case QEvent::Resize:
+               case QEvent::UpdateRequest:
+               case QEvent::CursorChange:
+               case QEvent::ActionChanged:
+               case QEvent::EnabledChange:
+               case QEvent::SockAct:
+               case QEvent::Timer:
+               case QEvent::Paint:
+               case QEvent::ToolTipChange:
+               case QEvent::LayoutRequest:
+               case QEvent::MetaCall:
                        return QObject::eventFilter(obj, event);
                default:
+                       // FIXME Blocking all these events is a bad idea.
                        QKeyEvent *keyEvent = dynamic_cast<QKeyEvent*>(event);
                        if (keyEvent && keyEvent->key() == Qt::Key_Escape)
                                pressed_ = true;
@@ -871,9 +913,11 @@ struct GuiApplication::Private
        Private(): language_model_(0), meta_fake_bit(NoModifier),
                global_menubar_(0)
        {
-       #ifdef Q_WS_WIN
+       #if (QT_VERSION < 0x050000) || (QT_VERSION >= 0x050400)
+       #if defined(Q_OS_WIN) || defined(Q_CYGWIN_WIN)
                /// WMF Mime handler for Windows clipboard.
                wmf_mime_ = new QWindowsMimeMetafile;
+       #endif
        #endif
                initKeySequences(&theTopLevelKeymap());
        }
@@ -919,6 +963,9 @@ struct GuiApplication::Private
        ///
        KeyModifier meta_fake_bit;
 
+       /// The result of last dispatch action
+       DispatchResult dispatch_result_;
+
        /// Multiple views container.
        /**
        * Warning: This must not be a smart pointer as the destruction of the
@@ -928,16 +975,18 @@ struct GuiApplication::Private
        QHash<int, GuiView *> views_;
 
        /// Only used on mac.
-       GlobalMenuBar * global_menubar_;
+       QMenuBar * global_menubar_;
 
-#ifdef Q_WS_MACX
+#ifdef Q_OS_MAC
        /// Linkback mime handler for MacOSX.
        QMacPasteboardMimeGraphics mac_pasteboard_mime_;
 #endif
 
-#ifdef Q_WS_WIN
+#if (QT_VERSION < 0x050000) || (QT_VERSION >= 0x050400)
+#if defined(Q_OS_WIN) || defined(Q_CYGWIN_WIN)
        /// WMF Mime handler for Windows clipboard.
        QWindowsMimeMetafile * wmf_mime_;
+#endif
 #endif
 
        /// Allows to check whether ESC was pressed during a long operation
@@ -949,7 +998,7 @@ GuiApplication * guiApp;
 
 GuiApplication::~GuiApplication()
 {
-#ifdef Q_WS_MACX
+#ifdef Q_OS_MAC
        closeAllLinkBackLinks();
 #endif
        delete d;
@@ -970,6 +1019,11 @@ GuiApplication::GuiApplication(int & argc, char ** argv)
        // Install translator for GUI elements.
        installTranslator(&d->qt_trans_);
 
+#ifdef QPA_XCB
+       // Enable reception of XCB events.
+       installNativeEventFilter(this);
+#endif
+
        // FIXME: quitOnLastWindowClosed is true by default. We should have a
        // lyxrc setting for this in order to let the application stay resident.
        // But then we need some kind of dock icon, at least on Windows.
@@ -977,7 +1031,7 @@ GuiApplication::GuiApplication(int & argc, char ** argv)
        if (lyxrc.quit_on_last_window_closed)
                setQuitOnLastWindowClosed(false);
        */
-#ifdef Q_WS_MACX
+#ifdef Q_OS_MAC
        // FIXME: Do we need a lyxrc setting for this on Mac? This behaviour
        // seems to be the default case for applications like LyX.
        setQuitOnLastWindowClosed(false);
@@ -986,10 +1040,10 @@ GuiApplication::GuiApplication(int & argc, char ** argv)
        /// Only needed with Qt/Mac.
        installTranslator(new MenuTranslator(this));
        ///
-    setupApplescript();
+       setupApplescript();
 #endif
 
-#ifdef Q_WS_X11
+#if defined(Q_WS_X11) || defined(QPA_XCB)
        // doubleClickInterval() is 400 ms on X11 which is just too long.
        // On Windows and Mac OS X, the operating system's value is used.
        // On Microsoft Windows, calling this function sets the double
@@ -1037,6 +1091,16 @@ GuiApplication * theGuiApp()
 }
 
 
+double GuiApplication::pixelRatio() const
+{
+#if QT_VERSION >= 0x050000
+       return devicePixelRatio();
+#else
+       return 1.0;
+#endif
+}
+
+
 void GuiApplication::clearSession()
 {
        QSettings settings;
@@ -1050,6 +1114,12 @@ docstring Application::iconName(FuncRequest const & f, bool unknown)
 }
 
 
+docstring Application::mathIcon(docstring const & c)
+{
+       return qstring_to_ucs4(findImg(toqstr(c)));
+}
+
+
 FuncStatus GuiApplication::getStatus(FuncRequest const & cmd) const
 {
        FuncStatus status;
@@ -1241,6 +1311,14 @@ bool GuiApplication::getStatus(FuncRequest const & cmd, FuncStatus & flag) const
                break;
        }
 
+       case LFUN_DIALOG_SHOW: {
+               string const name = cmd.getArg(0);
+               return name == "aboutlyx"
+                       || name == "prefs"
+                       || name == "texinfo"
+                       || name == "progress"
+                       || name == "compare";
+       }
 
        default:
                return false;
@@ -1295,7 +1373,7 @@ static docstring makeDispatchMessage(docstring const & msg,
 }
 
 
-void GuiApplication::dispatch(FuncRequest const & cmd)
+DispatchResult const & GuiApplication::dispatch(FuncRequest const & cmd)
 {
        Buffer * buffer = 0;
        if (current_view_ && current_view_->currentBufferView()) {
@@ -1315,6 +1393,9 @@ void GuiApplication::dispatch(FuncRequest const & cmd)
        // the buffer may have been closed by one action
        if (theBufferList().isLoaded(buffer))
                buffer->undo().endUndoGroup();
+
+       d->dispatch_result_ = dr;
+       return d->dispatch_result_;
 }
 
 
@@ -1379,6 +1460,7 @@ void GuiApplication::gotoBookmark(unsigned int idx, bool openFile,
        // if the current buffer is not that one, switch to it.
        BufferView * doc_bv = current_view_ ?
                current_view_->documentBufferView() : 0;
+       Cursor const old = doc_bv->cursor();
        if (!doc_bv || doc_bv->buffer().fileName() != tmp.filename) {
                if (switchToBuffer) {
                        dispatch(FuncRequest(LFUN_BUFFER_SWITCH, file));
@@ -1394,12 +1476,15 @@ void GuiApplication::gotoBookmark(unsigned int idx, bool openFile,
                        tmp.bottom_pit, tmp.bottom_pos, tmp.top_id, tmp.top_pos))
                return;
 
+       Cursor & cur = doc_bv->cursor();
+       if (cur != old)
+               notifyCursorLeavesOrEnters(old, cur);
+
        // bm changed
        if (idx == 0)
                return;
 
        // Cursor jump succeeded!
-       Cursor const & cur = doc_bv->cursor();
        pit_type new_pit = cur.pit();
        pos_type new_pos = cur.pos();
        int new_id = cur.paragraph().id();
@@ -1422,18 +1507,16 @@ void GuiApplication::reconfigure(string const & option)
                current_view_->message(_("Running configure..."));
 
        // Run configure in user lyx directory
-       PathChanger p(package().user_support());
-       string configure_command = package().configure_command();
-       configure_command += option;
-       Systemcall one;
-       int const ret = one.startscript(Systemcall::Wait, configure_command);
-       p.pop();
+       string const lock_file = package().getConfigureLockName();
+       int fd = fileLock(lock_file.c_str());
+       int const ret = package().reconfigureUserLyXDir(option);
        // emit message signal.
        if (current_view_)
                current_view_->message(_("Reloading configuration..."));
        lyxrc.read(libFileSearch(QString(), "lyxrc.defaults"), false);
        // Re-read packages.lst
        LaTeXPackages::getAvailable();
+       fileUnlock(fd, lock_file.c_str());
 
        if (ret)
                Alert::information(_("System reconfiguration failed"),
@@ -1572,10 +1655,12 @@ void GuiApplication::dispatch(FuncRequest const & cmd, DispatchResult & dr)
                validateCurrentView();
                // FIXME: create a new method shared with LFUN_HELP_OPEN.
                string const fname = to_utf8(cmd.argument());
+               bool const is_open = FileName::isAbsolute(fname)
+                       && theBufferList().getBuffer(FileName(fname));
                if (d->views_.empty()
                    || (!lyxrc.open_buffers_in_tabs
                        && current_view_->documentBufferView() != 0
-                       && !theBufferList().getBuffer(FileName(fname)))) {
+                       && !is_open)) {
                        // We want the ui session to be saved per document and not per
                        // window number. The filename crc is a good enough identifier.
                        boost::crc_32_type crc;
@@ -1650,6 +1735,8 @@ void GuiApplication::dispatch(FuncRequest const & cmd, DispatchResult & dr)
                }
                // Make sure we don't keep old colors in cache.
                d->color_cache_.clear();
+               // Update the current view
+               lyx::dispatch(FuncRequest(LFUN_SCREEN_FONT_UPDATE));
                break;
        }
 
@@ -1670,7 +1757,18 @@ void GuiApplication::dispatch(FuncRequest const & cmd, DispatchResult & dr)
                }
 
                actOnUpdatedPrefs(lyxrc_orig, lyxrc);
-               resetGui();
+
+               // If the request comes from the minibuffer, then we can't reset
+               // the GUI, since that would destory the minibuffer itself and
+               // cause a crash, since we are currently in one of the methods of
+               // GuiCommandBuffer. See bug #8540.
+               if (cmd.origin() != FuncRequest::COMMANDBUFFER)
+                       resetGui();
+               // else
+               //   FIXME Unfortunately, that leaves a bug here, since we cannot
+               //   reset the GUI in this case. If the changes to lyxrc affected the
+               //   UI, then, nothing would happen. This seems fairly unlikely, but
+               //   it definitely is a bug.
 
                break;
        }
@@ -1772,7 +1870,7 @@ void GuiApplication::dispatch(FuncRequest const & cmd, DispatchResult & dr)
                Buffer * const last = theBufferList().last();
                foreach (GuiView * view, allViews) {
                        // all of the buffers might be locally hidden. That is, there is no active buffer.
-                       if (!view || !view->currentBufferView() || !&view->currentBufferView()->buffer())
+                       if (!view || !view->currentBufferView())
                                activeBuffers[view] = 0;
                        else
                                activeBuffers[view] = &view->currentBufferView()->buffer();
@@ -1882,7 +1980,16 @@ void GuiApplication::dispatch(FuncRequest const & cmd, DispatchResult & dr)
                istringstream ss(argument);
                Lexer lex;
                lex.setStream(ss);
+
+               // See #9236
+               // We need to make sure that, after we recreat the DocumentClass,
+               // which we do in readHeader, we apply it to the document itself.
+               DocumentClassConstPtr olddc = defaults.params().documentClassPtr();
                int const unknown_tokens = defaults.readHeader(lex);
+               DocumentClassConstPtr newdc = defaults.params().documentClassPtr();
+               ErrorList el;
+               InsetText & theinset = static_cast<InsetText &>(defaults.inset());
+               cap::switchBetweenClasses(olddc, newdc, theinset, el);
 
                if (unknown_tokens != 0) {
                        lyxerr << "Warning in LFUN_BUFFER_SAVE_AS_DEFAULT!\n"
@@ -1915,6 +2022,25 @@ void GuiApplication::dispatch(FuncRequest const & cmd, DispatchResult & dr)
                lyxerr.setLevel(Debug::value(to_utf8(cmd.argument())));
                break;
 
+       case LFUN_DIALOG_SHOW: {
+               string const name = cmd.getArg(0);
+
+               if ( name == "aboutlyx"
+                       || name == "prefs"
+                       || name == "texinfo"
+                       || name == "progress"
+                       || name == "compare")
+               {
+                       // work around: on Mac OS the application
+                       // is not terminated when closing the last view.
+                       // Create a new one to be able to dispatch the
+                       // LFUN_DIALOG_SHOW to this view.
+                       if (current_view_ == 0)
+                               createView();
+               }
+               // fall through
+       }
+
        default:
                // The LFUN must be for one of GuiView, BufferView, Buffer or Cursor;
                // let's try that:
@@ -2026,15 +2152,50 @@ void GuiApplication::processKeySym(KeySymbol const & keysym, KeyModifier state)
        }
 
        if (func.action() == LFUN_UNKNOWN_ACTION) {
-               // Hmm, we didn't match any of the keysequences. See
-               // if it's normal insertable text not already covered
-               // by a binding
+               // We didn't match any of the key sequences.
+               // See if it's normal insertable text not already
+               // covered by a binding
                if (keysym.isText() && d->keyseq.length() == 1) {
+                       // Non-printable characters (such as ASCII control characters)
+                       // must not be inserted (#5704)
+                       if (!isPrintable(encoded_last_key)) {
+                               LYXERR(Debug::KEY, "Non-printable character! Omitting.");
+                               if (current_view_)
+                                       current_view_->restartCursor();
+                               return;
+                       }
+                       // The following modifier check is not needed on Mac.
+                       // The keysym is either not text or it is different
+                       // from the non-modifier keysym. See #9875 for the
+                       // broken alt-modifier effect of having this code active.
+#if !defined(Q_OS_MAC)
+                       // If a non-Shift Modifier is used we have a non-bound key sequence
+                       // (such as Alt+j = j). This should be omitted (#5575).
+                       // On Windows, AltModifier and ControlModifier are both
+                       // set when AltGr is pressed. Therefore, in order to not
+                       // break AltGr-bound symbols (see #5575 for details),
+                       // unbound Ctrl+Alt key sequences are allowed.
+                       if ((state & AltModifier || state & ControlModifier || state & MetaModifier)
+#if defined(Q_OS_WIN) || defined(Q_CYGWIN_WIN)
+                           && !(state & AltModifier && state & ControlModifier)
+#endif
+                           )
+                       {
+                               if (current_view_) {
+                                       current_view_->message(_("Unknown function."));
+                                       current_view_->restartCursor();
+                               }
+                               return;
+                       }
+#endif
+                       // Since all checks above were passed, we now really have text that
+                       // is to be inserted (e.g., AltGr-bound symbols). Thus change the
+                       // func to LFUN_SELF_INSERT and thus cause the text to be inserted
+                       // below.
                        LYXERR(Debug::KEY, "isText() is true, inserting.");
-                       func = FuncRequest(LFUN_SELF_INSERT,
-                                          FuncRequest::KEYBOARD);
+                       func = FuncRequest(LFUN_SELF_INSERT, FuncRequest::KEYBOARD);
                } else {
-                       LYXERR(Debug::KEY, "Unknown, !isText() - giving up");
+                       LYXERR(Debug::KEY, "Unknown Action and not isText() -- giving up");
                        if (current_view_) {
                                current_view_->message(_("Unknown function."));
                                current_view_->restartCursor();
@@ -2144,16 +2305,40 @@ void GuiApplication::createView(QString const & geometry_arg, bool autoShow,
        }
 
        if (!geometry_arg.isEmpty()) {
-#ifdef Q_WS_WIN
+#if defined(Q_OS_WIN) || defined(Q_CYGWIN_WIN)
                int x, y;
                int w, h;
-               QRegExp re( "[=]*(?:([0-9]+)[xX]([0-9]+)){0,1}[ ]*(?:([+-][0-9]*)([+-][0-9]*)){0,1}" );
+               QChar sx, sy;
+               QRegExp re( "[=]*(?:([0-9]+)[xX]([0-9]+)){0,1}[ ]*(?:([+-][0-9]*)){0,1}(?:([+-][0-9]*)){0,1}" );
                re.indexIn(geometry_arg);
                w = re.cap(1).toInt();
                h = re.cap(2).toInt();
                x = re.cap(3).toInt();
                y = re.cap(4).toInt();
+               sx = re.cap(3).isEmpty() ? '+' : re.cap(3).at(0);
+               sy = re.cap(4).isEmpty() ? '+' : re.cap(4).at(0);
+               // Set initial geometry such that we can get the frame size.
                view->setGeometry(x, y, w, h);
+               int framewidth = view->geometry().x() - view->x();
+               int titleheight = view->geometry().y() - view->y();
+               // Negative displacements must be interpreted as distances
+               // from the right or bottom screen borders.
+               if (sx == '-' || sy == '-') {
+                       QRect rec = QApplication::desktop()->screenGeometry();
+                       if (sx == '-')
+                               x += rec.width() - w - framewidth;
+                       if (sy == '-')
+                               y += rec.height() - h - titleheight;
+                       view->setGeometry(x, y, w, h);
+               }
+               // Make sure that the left and top frame borders are visible.
+               if (view->x() < 0 || view->y() < 0) {
+                       if (view->x() < 0)
+                               x = framewidth;
+                       if (view->y() < 0)
+                               y = titleheight;
+                       view->setGeometry(x, y, w, h);
+               }
 #endif
        }
        view->setFocus();
@@ -2272,14 +2457,17 @@ void GuiApplication::execBatchCommands()
                // Gives some error box here.
                return;
 
-#ifdef Q_WS_MACX
+#ifdef Q_OS_MAC
 #if QT_VERSION > 0x040600
        setAttribute(Qt::AA_MacDontSwapCtrlAndMeta,lyxrc.mac_dontswap_ctrl_meta);
+#endif
+#if QT_VERSION > 0x050100
+       setAttribute(Qt::AA_UseHighDpiPixmaps,true);
 #endif
        // Create the global default menubar which is shown for the dialogs
        // and if no GuiView is visible.
        // This must be done after the session was recovered to know the "last files".
-       d->global_menubar_ = new GlobalMenuBar;
+       d->global_menubar_ = new QMenuBar(0);
        d->menus_.fillMenuBar(d->global_menubar_, 0, true);
 #endif
 
@@ -2294,13 +2482,12 @@ QAbstractItemModel * GuiApplication::languageModel()
 
        QStandardItemModel * lang_model = new QStandardItemModel(this);
        lang_model->insertColumns(0, 3);
-       int current_row;
-       QIcon speller(getPixmap("images/", "dialog-show_spellchecker", "png"));
-       QIcon saurus(getPixmap("images/", "thesaurus-entry", "png"));
+       QIcon speller(getPixmap("images/", "dialog-show_spellchecker", "svgz,png"));
+       QIcon saurus(getPixmap("images/", "thesaurus-entry", "svgz,png"));
        Languages::const_iterator it = lyx::languages.begin();
        Languages::const_iterator end = lyx::languages.end();
        for (; it != end; ++it) {
-               current_row = lang_model->rowCount();
+               int current_row = lang_model->rowCount();
                lang_model->insertRows(current_row, 1);
                QModelIndex pl_item = lang_model->index(current_row, 0);
                QModelIndex sp_item = lang_model->index(current_row, 1);
@@ -2366,7 +2553,6 @@ void GuiApplication::restoreGuiSession()
 QString const GuiApplication::romanFontName()
 {
        QFont font;
-       font.setKerning(false);
        font.setStyleHint(QFont::Serif);
        font.setFamily("serif");
 
@@ -2377,7 +2563,6 @@ QString const GuiApplication::romanFontName()
 QString const GuiApplication::sansFontName()
 {
        QFont font;
-       font.setKerning(false);
        font.setStyleHint(QFont::SansSerif);
        font.setFamily("sans");
 
@@ -2388,7 +2573,6 @@ QString const GuiApplication::sansFontName()
 QString const GuiApplication::typewriterFontName()
 {
        QFont font;
-       font.setKerning(false);
        font.setStyleHint(QFont::TypeWriter);
        font.setFamily("monospace");
 
@@ -2537,13 +2721,18 @@ void GuiApplication::unregisterSocketCallback(int fd)
 
 void GuiApplication::commitData(QSessionManager & sm)
 {
-       /// The implementation is required to avoid an application exit
-       /// when session state save is triggered by session manager.
-       /// The default implementation sends a close event to all
-       /// visible top level widgets when session managment allows
-       /// interaction.
-       /// We are changing that to close all wiew one by one.
-       /// FIXME: verify if the default implementation is enough now.
+       /** The implementation is required to avoid an application exit
+        ** when session state save is triggered by session manager.
+        ** The default implementation sends a close event to all
+        ** visible top level widgets when session managment allows
+        ** interaction.
+        ** We are changing that to check the state of each buffer in all
+        ** views and ask the users what to do if buffers are dirty.
+        ** Furthermore, we save the session state.
+        ** We do NOT close the views here since the user still can cancel
+        ** the logout process (see #9277); also, this would hide LyX from
+        ** an OSes own session handling (application restoration).
+        **/
        #ifdef QT_NO_SESSIONMANAGER
                #ifndef _MSC_VER
                        #warning Qt is compiled without session manager
@@ -2552,18 +2741,21 @@ void GuiApplication::commitData(QSessionManager & sm)
                #endif
                (void) sm;
        #else
-               if (sm.allowsInteraction() && !closeAllViews())
+               if (sm.allowsInteraction() && !prepareAllViewsForLogout())
                        sm.cancel();
+               else
+                       sm.release();
        #endif
 }
 
 
 void GuiApplication::unregisterView(GuiView * gv)
 {
-       LAPPERR(d->views_[gv->id()] == gv);
-       d->views_.remove(gv->id());
-       if (current_view_ == gv)
-               current_view_ = 0;
+       if(d->views_.contains(gv->id()) && d->views_.value(gv->id()) == gv) {
+               d->views_.remove(gv->id());
+               if (current_view_ == gv)
+                       current_view_ = 0;
+       }
 }
 
 
@@ -2587,6 +2779,21 @@ bool GuiApplication::closeAllViews()
 }
 
 
+bool GuiApplication::prepareAllViewsForLogout()
+{
+       if (d->views_.empty())
+               return true;
+
+       QList<GuiView *> const views = d->views_.values();
+       foreach (GuiView * view, views) {
+               if (!view->prepareAllBuffersForLogout())
+                       return false;
+       }
+
+       return true;
+}
+
+
 GuiView & GuiApplication::view(int id) const
 {
        LAPPERR(d->views_.contains(id));
@@ -2777,14 +2984,14 @@ bool GuiApplication::readUIFile(QString const & name, bool include)
 
        if (retval == FormatMismatch) {
                LYXERR(Debug::FILES, "Converting ui file to format " << LFUN_FORMAT);
-               FileName const tempfile = FileName::tempName("convert_ui");
+               TempFile tmp("convertXXXXXX.ui");
+               FileName const tempfile = tmp.name();
                bool const success = prefs2prefs(ui_path, tempfile, true);
                if (!success) {
                        LYXERR0("Unable to convert " << ui_path.absFileName() <<
                                " to format " << LFUN_FORMAT << ".");
                } else {
                        retval = readUIFile(tempfile);
-                       tempfile.removeFile();
                }
        }
 
@@ -2884,6 +3091,44 @@ bool GuiApplication::x11EventFilter(XEvent * xev)
        }
        return false;
 }
+#elif defined(QPA_XCB)
+bool GuiApplication::nativeEventFilter(const QByteArray & eventType,
+                                      void * message, long *)
+{
+       if (!current_view_ || eventType != "xcb_generic_event_t")
+               return false;
+
+       xcb_generic_event_t * ev = static_cast<xcb_generic_event_t *>(message);
+
+       switch (ev->response_type) {
+       case XCB_SELECTION_REQUEST: {
+               xcb_selection_request_event_t * srev =
+                       reinterpret_cast<xcb_selection_request_event_t *>(ev);
+               if (srev->selection != XCB_ATOM_PRIMARY)
+                       break;
+               LYXERR(Debug::SELECTION, "X requested selection.");
+               BufferView * bv = current_view_->currentBufferView();
+               if (bv) {
+                       docstring const sel = bv->requestSelection();
+                       if (!sel.empty())
+                               d->selection_.put(sel);
+               }
+               break;
+       }
+       case XCB_SELECTION_CLEAR: {
+               xcb_selection_clear_event_t * scev =
+                       reinterpret_cast<xcb_selection_clear_event_t *>(ev);
+               if (scev->selection != XCB_ATOM_PRIMARY)
+                       break;
+               LYXERR(Debug::SELECTION, "Lost selection.");
+               BufferView * bv = current_view_->currentBufferView();
+               if (bv)
+                       bv->clearSelection();
+               break;
+       }
+       }
+       return false;
+}
 #endif
 
 } // namespace frontend