]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt/GuiKeySymbol.cpp
Make code a bit easier to read
[lyx.git] / src / frontends / qt / GuiKeySymbol.cpp
index 551ea8dc6dbe4de27fdda1312d4a2f122acb8495..083bc5f8848cda5f3031e3ff614154c772ef77b7 100644 (file)
@@ -11,7 +11,7 @@
 #include <config.h>
 
 #include "GuiKeySymbol.h"
-#if defined(Q_OS_MAC) && QT_VERSION > 0x050000
+#if defined(Q_OS_MAC)
 #include "GuiApplication.h"
 #endif
 #include "qt_helpers.h"
@@ -25,7 +25,6 @@
 #include <QKeyEvent>
 #include <QKeySequence>
 #include <QEvent>
-#include <QTextCodec>
 
 #include <map>
 #include <string>
@@ -692,39 +691,6 @@ static std::string const qkey_to_string(int lkey)
 }
 
 
-#if 0
-static char encode(string const & encoding, QString const & str)
-{
-       typedef map<string, QTextCodec *> EncodingMap;
-       EncodingMap encoding_map;
-
-       QTextCodec * codec = 0;
-
-       EncodingMap::const_iterator cit = encoding_map.find(encoding);
-       if (cit == encoding_map.end()) {
-               LYXERR(Debug::KEY, "Unrecognised encoding '" << encoding << "'.");
-               codec = encoding_map.find("")->second;
-       } else {
-               codec = cit->second;
-       }
-
-       if (!codec) {
-               LYXERR(Debug::KEY, "No codec for encoding '" << encoding << "' found.");
-               return 0;
-       }
-
-       LYXERR(Debug::KEY, "Using codec " << codec->name());
-
-       if (!codec->canEncode(str)) {
-               LYXERR(Debug::KEY, "Oof. Can't encode the text !");
-               return 0;
-       }
-
-       return codec->fromUnicode(str).data()[0];
-}
-#endif
-
-
 void setKeySymbol(KeySymbol * sym, QKeyEvent const * ev)
 {
        sym->setKey(ev->key());
@@ -867,7 +833,7 @@ bool KeySymbol::operator==(KeySymbol const & ks) const
 KeyModifier q_key_state(Qt::KeyboardModifiers state)
 {
        KeyModifier k = NoModifier;
-#if defined(Q_OS_MAC) && (QT_VERSION >= QT_VERSION_CHECK(5, 0, 0)) && (QT_VERSION < QT_VERSION_CHECK(5, 12, 0))
+#if defined(Q_OS_MAC) && (QT_VERSION < QT_VERSION_CHECK(5, 12, 0))
        /// Additional check for Control and Meta modifier swap state.
        /// Starting with Qt 5 the modifiers aren't reported correctly.
        /// Until this is fixed a correction is required.