]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt4/GuiApplication.cpp
* fix spelling in comments to please John.
[lyx.git] / src / frontends / qt4 / GuiApplication.cpp
index 77ffd4c0da01e701a2a26e02d6d2f95176d89cff..030668f2e94c275b728e5d23eae09e9eb65722e0 100644 (file)
 #include "Font.h"
 #include "FuncRequest.h"
 #include "FuncStatus.h"
+#include "Intl.h"
+#include "KeyMap.h"
 #include "Language.h"
+#include "LaTeXFeatures.h"
 #include "Lexer.h"
 #include "LyX.h"
 #include "LyXAction.h"
 #include "LyXFunc.h"
 #include "LyXRC.h"
+#include "Server.h"
 #include "Session.h"
+#include "SpellChecker.h"
 #include "version.h"
 
 #include "support/lassert.h"
@@ -59,6 +64,8 @@
 #include "support/Messages.h"
 #include "support/os.h"
 #include "support/Package.h"
+#include "support/Path.h"
+#include "support/Systemcall.h"
 
 #ifdef Q_WS_MACX
 #include "support/linkback/LinkBackProxy.h"
 #include <boost/crc.hpp>
 
 #include <exception>
+#include <sstream>
 #include <vector>
 
 using namespace std;
@@ -218,6 +226,7 @@ PngMap sorted_png_map[] = {
        { "Cap", "cap2" },
        { "Cup", "cup2" },
        { "Delta", "delta2" },
+       { "Diamond", "diamond2" },
        { "Downarrow", "downarrow2" },
        { "Gamma", "gamma2" },
        { "Lambda", "lambda2" },
@@ -471,7 +480,7 @@ public:
                        QKeyEvent * ke = static_cast<QKeyEvent*>(e);
                        KeySymbol sym;
                        setKeySymbol(&sym, ke);
-                       theLyXFunc().processKeySym(sym, q_key_state(ke->modifiers()));
+                       guiApp->processKeySym(sym, q_key_state(ke->modifiers()));
                        e->accept();
                        return true;
                }
@@ -644,12 +653,20 @@ public:
 
 struct GuiApplication::Private
 {
-       Private(): language_model_(0), global_menubar_(0) 
+       Private(): language_model_(0), meta_fake_bit(NoModifier),
+               global_menubar_(0)
        {
        #ifdef Q_WS_WIN
                /// WMF Mime handler for Windows clipboard.
                wmf_mime_ = new QWindowsMimeMetafile();
        #endif
+               initKeySequences(&theTopLevelKeymap());
+       }
+
+       void initKeySequences(KeyMap * kb)
+       {
+               keyseq = KeySequence(kb, kb);
+               cancel_meta_seq = KeySequence(kb, kb);
        }
 
        ///
@@ -680,6 +697,13 @@ struct GuiApplication::Private
        /// delayed FuncRequests
        std::queue<FuncRequest> func_request_queue_;
 
+       ///
+       KeySequence keyseq;
+       ///
+       KeySequence cancel_meta_seq;
+       ///
+       KeyModifier meta_fake_bit;
+
        /// Multiple views container.
        /**
        * Warning: This must not be a smart pointer as the destruction of the
@@ -800,8 +824,17 @@ docstring GuiApplication::iconName(FuncRequest const & f, bool unknown)
 }
 
 
-LyXView * GuiApplication::currentWindow()
+LyXView * GuiApplication::currentWindow() 
 {
+#ifdef Q_WS_MACX
+       /* In LyX/Mac, when a dialog is open, the menus of the
+          application can still be accessed without giving focus to
+          the main window. In this case, we want to disable the menu
+          entries that are buffer or view-related.
+       */
+       if (current_view_ && activeWindow() != current_view_)
+               return 0;
+#endif
        return current_view_;
 }
 
@@ -824,6 +857,13 @@ bool GuiApplication::getStatus(FuncRequest const & cmd, FuncStatus & flag) const
        case LFUN_SET_COLOR:
        case LFUN_WINDOW_NEW:
        case LFUN_LYX_QUIT:
+       case LFUN_LYXRC_APPLY:
+       case LFUN_COMMAND_PREFIX:
+       case LFUN_CANCEL:
+       case LFUN_META_PREFIX:
+       case LFUN_RECONFIGURE:
+       case LFUN_SERVER_GET_FILENAME:
+       case LFUN_SERVER_NOTIFY:
                enable = true;
                break;
 
@@ -837,8 +877,45 @@ bool GuiApplication::getStatus(FuncRequest const & cmd, FuncStatus & flag) const
        return true;
 }
 
-       
-bool GuiApplication::dispatch(FuncRequest const & cmd)
+
+// This function runs "configure" and then rereads lyx.defaults to
+// reconfigure the automatic settings.
+static void reconfigure(GuiView * lv, string const & option)
+{
+       // emit message signal.
+       if (lv)
+               lv->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 ret = one.startscript(Systemcall::Wait, configure_command);
+       p.pop();
+       // emit message signal.
+       if (lv)
+               lv->message(_("Reloading configuration..."));
+       lyxrc.read(libFileSearch(QString(), "lyxrc.defaults"));
+       // Re-read packages.lst
+       LaTeXFeatures::getAvailable();
+
+       if (ret)
+               Alert::information(_("System reconfiguration failed"),
+                          _("The system reconfiguration has failed.\n"
+                                 "Default textclass is used but LyX may "
+                                 "not be able to work properly.\n"
+                                 "Please reconfigure again if needed."));
+       else
+
+               Alert::information(_("System reconfigured"),
+                          _("The system has been reconfigured.\n"
+                            "You need to restart LyX to make use of any\n"
+                            "updated document class specifications."));
+}
+
+
+void GuiApplication::dispatch(FuncRequest const & cmd, DispatchResult & dr)
 {
        switch (cmd.action) {
 
@@ -873,10 +950,7 @@ bool GuiApplication::dispatch(FuncRequest const & cmd)
                // Set current_view_ to zero to forbid GuiWorkArea::redraw()
                // to skip the refresh.
                current_view_ = 0;
-               BufferList::iterator it = theBufferList().begin();
-               BufferList::iterator const end = theBufferList().end();
-               for (; it != end; ++it)
-                       (*it)->changed();
+               theBufferList().changed(false);
                // Restore current_view_
                current_view_ = view;
                break;
@@ -946,6 +1020,7 @@ bool GuiApplication::dispatch(FuncRequest const & cmd)
                Buffer * buf = current_view_->loadDocument(fname, false);
                if (buf) {
                        current_view_->setBuffer(buf);
+                       buf->setReadonly(true);
                        buf->updateLabels();
                        buf->errors("Parse");
                }
@@ -984,13 +1059,209 @@ bool GuiApplication::dispatch(FuncRequest const & cmd)
                break;
        }
 
+       case LFUN_LYXRC_APPLY: {
+               // reset active key sequences, since the bindings
+               // are updated (bug 6064)
+               d->keyseq.reset();
+               LyXRC const lyxrc_orig = lyxrc;
+
+               istringstream ss(to_utf8(cmd.argument()));
+               bool const success = lyxrc.read(ss) == 0;
+
+               if (!success) {
+                       lyxerr << "Warning in LFUN_LYXRC_APPLY!\n"
+                               << "Unable to read lyxrc data"
+                               << endl;
+                       break;
+               }
+
+               actOnUpdatedPrefs(lyxrc_orig, lyxrc);
+               setSpellChecker();
+               resetGui();
+
+               break;
+       }
+
+       case LFUN_COMMAND_PREFIX:
+               lyx::dispatch(FuncRequest(LFUN_MESSAGE, d->keyseq.printOptions(true)));
+               break;
+
+       case LFUN_CANCEL: {
+               d->keyseq.reset();
+               d->meta_fake_bit = NoModifier;
+               GuiView * gv = currentView();
+               if (gv && gv->currentBufferView())
+                       // cancel any selection
+                       lyx::dispatch(FuncRequest(LFUN_MARK_OFF));
+               dr.setMessage(from_ascii(N_("Cancel")));
+               break;
+       }
+       case LFUN_META_PREFIX:
+               d->meta_fake_bit = AltModifier;
+               dr.setMessage(d->keyseq.print(KeySequence::ForGui));
+               break;
+
+       // --- Menus -----------------------------------------------
+       case LFUN_RECONFIGURE:
+               // argument is any additional parameter to the configure.py command
+               reconfigure(currentView(), to_utf8(cmd.argument()));
+               break;
+
+       // --- lyxserver commands ----------------------------
+       case LFUN_SERVER_GET_FILENAME: {
+               GuiView * lv = currentView();
+               LASSERT(lv && lv->documentBufferView(), return);
+               docstring const fname = from_utf8(
+                       lv->documentBufferView()->buffer().absFileName());
+               dr.setMessage(fname);
+               LYXERR(Debug::INFO, "FNAME[" << fname << ']');
+               break;
+       }
+       case LFUN_SERVER_NOTIFY: {
+               docstring const dispatch_buffer = d->keyseq.print(KeySequence::Portable);
+               dr.setMessage(dispatch_buffer);
+               theServer().notifyClient(to_utf8(dispatch_buffer));
+               break;
+       }
        default:
                // Notify the caller that the action has not been dispatched.
-               return false;
+               dr.dispatched(false);
+               return;
        }
 
        // The action has been dispatched.
-       return true;
+       dr.dispatched(true);
+}
+
+
+docstring GuiApplication::viewStatusMessage()
+{
+       // When meta-fake key is pressed, show the key sequence so far + "M-".
+       if (d->meta_fake_bit != NoModifier)
+               return d->keyseq.print(KeySequence::ForGui) + "M-";
+
+       // Else, when a non-complete key sequence is pressed,
+       // show the available options.
+       if (d->keyseq.length() > 0 && !d->keyseq.deleted())
+               return d->keyseq.printOptions(true);
+
+       return docstring();
+}
+
+
+void GuiApplication::handleKeyFunc(FuncCode action)
+{
+       char_type c = 0;
+
+       if (d->keyseq.length())
+               c = 0;
+       GuiView * gv = currentView();
+       LASSERT(gv && gv->currentBufferView(), return);
+       BufferView * bv = gv->currentBufferView();
+       bv->getIntl().getTransManager().deadkey(
+               c, get_accent(action).accent, bv->cursor().innerText(),
+               bv->cursor());
+       // Need to clear, in case the minibuffer calls these
+       // actions
+       d->keyseq.clear();
+       // copied verbatim from do_accent_char
+       bv->cursor().resetAnchor();
+       bv->processUpdateFlags(Update::FitCursor);
+}
+
+
+void GuiApplication::processKeySym(KeySymbol const & keysym, KeyModifier state)
+{
+       LYXERR(Debug::KEY, "KeySym is " << keysym.getSymbolName());
+
+       GuiView * lv = currentView();
+
+       // Do nothing if we have nothing (JMarc)
+       if (!keysym.isOK()) {
+               LYXERR(Debug::KEY, "Empty kbd action (probably composing)");
+               lv->restartCursor();
+               return;
+       }
+
+       if (keysym.isModifier()) {
+               LYXERR(Debug::KEY, "isModifier true");
+               if (lv)
+                       lv->restartCursor();
+               return;
+       }
+
+       char_type encoded_last_key = keysym.getUCSEncoded();
+
+       // Do a one-deep top-level lookup for
+       // cancel and meta-fake keys. RVDK_PATCH_5
+       d->cancel_meta_seq.reset();
+
+       FuncRequest func = d->cancel_meta_seq.addkey(keysym, state);
+       LYXERR(Debug::KEY, "action first set to [" << func.action << ']');
+
+       // When not cancel or meta-fake, do the normal lookup.
+       // Note how the meta_fake Mod1 bit is OR-ed in and reset afterwards.
+       // Mostly, meta_fake_bit = NoModifier. RVDK_PATCH_5.
+       if ((func.action != LFUN_CANCEL) && (func.action != LFUN_META_PREFIX)) {
+               // remove Caps Lock and Mod2 as a modifiers
+               func = d->keyseq.addkey(keysym, (state | d->meta_fake_bit));
+               LYXERR(Debug::KEY, "action now set to [" << func.action << ']');
+       }
+
+       // Dont remove this unless you know what you are doing.
+       d->meta_fake_bit = NoModifier;
+
+       // Can this happen now ?
+       if (func.action == LFUN_NOACTION)
+               func = FuncRequest(LFUN_COMMAND_PREFIX);
+
+       LYXERR(Debug::KEY, " Key [action=" << func.action << "]["
+               << d->keyseq.print(KeySequence::Portable) << ']');
+
+       // already here we know if it any point in going further
+       // why not return already here if action == -1 and
+       // num_bytes == 0? (Lgb)
+
+       if (d->keyseq.length() > 1)
+               lv->message(d->keyseq.print(KeySequence::ForGui));
+
+
+       // Maybe user can only reach the key via holding down shift.
+       // Let's see. But only if shift is the only modifier
+       if (func.action == LFUN_UNKNOWN_ACTION && state == ShiftModifier) {
+               LYXERR(Debug::KEY, "Trying without shift");
+               func = d->keyseq.addkey(keysym, NoModifier);
+               LYXERR(Debug::KEY, "Action now " << func.action);
+       }
+
+       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
+               if (keysym.isText() && d->keyseq.length() == 1) {
+                       LYXERR(Debug::KEY, "isText() is true, inserting.");
+                       func = FuncRequest(LFUN_SELF_INSERT,
+                                          FuncRequest::KEYBOARD);
+               } else {
+                       LYXERR(Debug::KEY, "Unknown, !isText() - giving up");
+                       lv->message(_("Unknown function."));
+                       lv->restartCursor();
+                       return;
+               }
+       }
+
+       if (func.action == LFUN_SELF_INSERT) {
+               if (encoded_last_key != 0) {
+                       docstring const arg(1, encoded_last_key);
+                       lyx::dispatch(FuncRequest(LFUN_SELF_INSERT, arg,
+                                            FuncRequest::KEYBOARD));
+                       LYXERR(Debug::KEY, "SelfInsert arg[`" << to_utf8(arg) << "']");
+               }
+       } else {
+               lyx::dispatch(func);
+               if (!lv)
+                       return;
+       }
 }
 
 
@@ -1017,11 +1288,12 @@ void GuiApplication::resetGui()
        QHash<int, GuiView *>::iterator it;
        for (it = d->views_.begin(); it != d->views_.end(); ++it) {
                GuiView * gv = *it;
+               setCurrentView(gv);
                gv->setLayoutDirection(layoutDirection());
                gv->resetDialogs();
        }
 
-       dispatch(FuncRequest(LFUN_SCREEN_FONT_UPDATE));
+       lyx::dispatch(FuncRequest(LFUN_SCREEN_FONT_UPDATE));
 }
 
 
@@ -1148,7 +1420,7 @@ void GuiApplication::setGuiLanguage()
        setRcGuiLanguage();
 
        QString const default_language = toqstr(Messages::defaultLanguage());
-       LYXERR(Debug::LOCALE, "Tring to set default locale to: " << default_language);
+       LYXERR(Debug::LOCALE, "Trying to set default locale to: " << default_language);
        QLocale const default_locale(default_language);
        QLocale::setDefault(default_locale);
 
@@ -1161,7 +1433,7 @@ void GuiApplication::setGuiLanguage()
        // c.f. http://doc.trolltech.com/4.1/qtranslator.html#load
        if (!d->qt_trans_.load(language_name,
                        QLibraryInfo::location(QLibraryInfo::TranslationsPath))) {
-               LYXERR(Debug::LOCALE, "Could not find  Qt translations for locale "
+               LYXERR(Debug::LOCALE, "Could not find Qt translations for locale "
                        << language_name);
        } else {
                LYXERR(Debug::LOCALE, "Successfully installed Qt translations for locale "
@@ -1219,8 +1491,8 @@ QAbstractItemModel * GuiApplication::languageModel()
        QStandardItemModel * lang_model = new QStandardItemModel(this);
        lang_model->insertColumns(0, 1);
        int current_row;
-       Languages::const_iterator it = languages.begin();
-       Languages::const_iterator end = languages.end();
+       Languages::const_iterator it = lyx::languages.begin();
+       Languages::const_iterator end = lyx::languages.end();
        for (; it != end; ++it) {
                current_row = lang_model->rowCount();
                lang_model->insertRows(current_row, 1);