summaryrefslogtreecommitdiffstats
path: root/src/plugins/inputmethods
diff options
context:
space:
mode:
authorQt by Nokia <qt-info@nokia.com>2011-04-27 12:05:43 +0200
committeraxis <qt-info@nokia.com>2011-04-27 12:05:43 +0200
commit38be0d13830efd2d98281c645c3a60afe05ffece (patch)
tree6ea73f3ec77f7d153333779883e8120f82820abe /src/plugins/inputmethods
Initial import from the monolithic Qt.
This is the beginning of revision history for this module. If you want to look at revision history older than this, please refer to the Qt Git wiki for how to use Git history grafting. At the time of writing, this wiki is located here: http://qt.gitorious.org/qt/pages/GitIntroductionWithQt If you have already performed the grafting and you don't see any history beyond this commit, try running "git log" with the "--follow" argument. Branched from the monolithic repo, Qt master branch, at commit 896db169ea224deb96c59ce8af800d019de63f12
Diffstat (limited to 'src/plugins/inputmethods')
-rw-r--r--src/plugins/inputmethods/imsw-multi/imsw-multi.pro13
-rw-r--r--src/plugins/inputmethods/imsw-multi/qmultiinputcontext.cpp212
-rw-r--r--src/plugins/inputmethods/imsw-multi/qmultiinputcontext.h117
-rw-r--r--src/plugins/inputmethods/imsw-multi/qmultiinputcontextplugin.cpp111
-rw-r--r--src/plugins/inputmethods/imsw-multi/qmultiinputcontextplugin.h85
-rw-r--r--src/plugins/inputmethods/inputmethods.pro3
6 files changed, 541 insertions, 0 deletions
diff --git a/src/plugins/inputmethods/imsw-multi/imsw-multi.pro b/src/plugins/inputmethods/imsw-multi/imsw-multi.pro
new file mode 100644
index 0000000000..f8dcb2cfcb
--- /dev/null
+++ b/src/plugins/inputmethods/imsw-multi/imsw-multi.pro
@@ -0,0 +1,13 @@
+TARGET = qimsw-multi
+include(../../qpluginbase.pri)
+CONFIG += warn_on
+
+QTDIR_build:DESTDIR = $$QT_BUILD_TREE/plugins/inputmethods
+
+HEADERS += qmultiinputcontext.h \
+ qmultiinputcontextplugin.h
+SOURCES += qmultiinputcontext.cpp \
+ qmultiinputcontextplugin.cpp
+
+target.path += $$[QT_INSTALL_PLUGINS]/inputmethods
+INSTALLS += target
diff --git a/src/plugins/inputmethods/imsw-multi/qmultiinputcontext.cpp b/src/plugins/inputmethods/imsw-multi/qmultiinputcontext.cpp
new file mode 100644
index 0000000000..c606239f32
--- /dev/null
+++ b/src/plugins/inputmethods/imsw-multi/qmultiinputcontext.cpp
@@ -0,0 +1,212 @@
+/****************************************************************************
+**
+** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies).
+** All rights reserved.
+** Contact: Nokia Corporation (qt-info@nokia.com)
+**
+** This file is part of the plugins of the Qt Toolkit.
+**
+** $QT_BEGIN_LICENSE:LGPL$
+** No Commercial Usage
+** This file contains pre-release code and may not be distributed.
+** You may use this file in accordance with the terms and conditions
+** contained in the Technology Preview License Agreement accompanying
+** this package.
+**
+** GNU Lesser General Public License Usage
+** Alternatively, this file may be used under the terms of the GNU Lesser
+** General Public License version 2.1 as published by the Free Software
+** Foundation and appearing in the file LICENSE.LGPL included in the
+** packaging of this file. Please review the following information to
+** ensure the GNU Lesser General Public License version 2.1 requirements
+** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
+**
+** In addition, as a special exception, Nokia gives you certain additional
+** rights. These rights are described in the Nokia Qt LGPL Exception
+** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
+**
+** If you have questions regarding the use of this file, please contact
+** Nokia at qt-info@nokia.com.
+**
+**
+**
+**
+**
+**
+**
+**
+** $QT_END_LICENSE$
+**
+****************************************************************************/
+
+/****************************************************************************
+**
+** Implementation of QMultiInputContext class
+**
+** Copyright (C) 2004 immodule for Qt Project. All rights reserved.
+**
+** This file is written to contribute to Nokia Corporation and/or its subsidiary(-ies) under their own
+** licence. You may use this file under your Qt license. Following
+** description is copied from their original file headers. Contact
+** immodule-qt@freedesktop.org if any conditions of this licensing are
+** not clear to you.
+**
+****************************************************************************/
+
+#ifndef QT_NO_IM
+#include "qmultiinputcontext.h"
+#include <qinputcontextfactory.h>
+#include <qstringlist.h>
+#include <qaction.h>
+#include <qsettings.h>
+#include <qmenu.h>
+
+#include <stdlib.h>
+
+QT_BEGIN_NAMESPACE
+
+QMultiInputContext::QMultiInputContext()
+ : QInputContext(), current(-1)
+{
+ keys = QInputContextFactory::keys();
+ for (int i = keys.size()-1; i >= 0; --i)
+ if (keys.at(i).contains(QLatin1String("imsw")))
+ keys.removeAt(i);
+
+ QString def = QLatin1String(getenv("QT4_IM_MODULE"));
+ if (def.isEmpty())
+ def = QLatin1String(getenv("QT_IM_MODULE"));
+ if (def.isEmpty()) {
+ QSettings settings(QSettings::UserScope, QLatin1String("Trolltech"));
+ settings.beginGroup(QLatin1String("Qt"));
+ def = settings.value(QLatin1String("DefaultInputMethod"), QLatin1String("xim")).toString();
+ }
+ current = keys.indexOf(def);
+ if (current < 0)
+ current = 0;
+
+ menu = new QMenu(tr("Select IM"));
+ separator = new QAction(this);
+ separator->setSeparator(true);
+
+ QActionGroup *group = new QActionGroup(this);
+ for (int i = 0; i < keys.size(); ++i) {
+ slaves.append(0);
+ const QString key = keys.at(i);
+ QAction *a = menu->addAction(QInputContextFactory::displayName(key));
+ a->setData(key);
+ a->setCheckable(true);
+ group->addAction(a);
+ if (i == current) {
+ slaves.replace(current, QInputContextFactory::create(key, this));
+ a->setChecked(true);
+ }
+ }
+ connect(group, SIGNAL(triggered(QAction*)), this, SLOT(changeSlave(QAction*)));
+}
+
+QMultiInputContext::~QMultiInputContext()
+{
+ delete menu;
+}
+
+
+QString QMultiInputContext::identifierName()
+{
+ return (slave()) ? slave()->identifierName() : QLatin1String("");
+}
+
+QString QMultiInputContext::language()
+{
+ return (slave()) ? slave()->language() : QLatin1String("");
+}
+
+
+#if defined(Q_WS_X11)
+bool QMultiInputContext::x11FilterEvent(QWidget *keywidget, XEvent *event)
+{
+ return (slave()) ? slave()->x11FilterEvent(keywidget, event) : false;
+}
+#endif // Q_WS_X11
+
+
+bool QMultiInputContext::filterEvent(const QEvent *event)
+{
+ return (slave()) ? slave()->filterEvent(event) : false;
+}
+
+void QMultiInputContext::reset()
+{
+ if (slave())
+ slave()->reset();
+}
+
+void QMultiInputContext::update()
+{
+ if (slave())
+ slave()->update();
+}
+
+void QMultiInputContext::mouseHandler(int x, QMouseEvent *event)
+{
+ if (slave())
+ slave()->mouseHandler(x, event);
+}
+
+QFont QMultiInputContext::font() const
+{
+ return (slave()) ? slave()->font() : QInputContext::font();
+}
+
+void QMultiInputContext::setFocusWidget(QWidget *w)
+{
+ QInputContext::setFocusWidget(w);
+ if (slave())
+ slave()->setFocusWidget(w);
+}
+
+QWidget *QMultiInputContext::focusWidget() const
+{
+ return QInputContext::focusWidget();
+}
+
+void QMultiInputContext::widgetDestroyed(QWidget *w)
+{
+ if (slave())
+ slave()->widgetDestroyed(w);
+}
+
+bool QMultiInputContext::isComposing() const
+{
+ return (slave()) ? slave()->isComposing() : false;
+}
+
+QList<QAction *> QMultiInputContext::actions()
+{
+ QList<QAction *> a = slave()->actions();
+ a.append(separator);
+ a.append(menu->menuAction());
+ return a;
+}
+
+void QMultiInputContext::changeSlave(QAction *a)
+{
+ for (int i = 0; i < slaves.size(); ++i) {
+ if (keys.at(i) == a->data().toString()) {
+ if (slaves.at(i) == 0)
+ slaves.replace(i, QInputContextFactory::create(keys.at(i), this));
+ QInputContext *qic = slaves.at(current);
+ QWidget *oldWidget = qic->focusWidget();
+ qic->reset();
+ qic->setFocusWidget(0);
+ current = i;
+ qic = slaves.at(current);
+ qic->setFocusWidget(oldWidget);
+ return;
+ }
+ }
+}
+
+QT_END_NAMESPACE
+
+#endif // QT_NO_IM
diff --git a/src/plugins/inputmethods/imsw-multi/qmultiinputcontext.h b/src/plugins/inputmethods/imsw-multi/qmultiinputcontext.h
new file mode 100644
index 0000000000..819174f0ad
--- /dev/null
+++ b/src/plugins/inputmethods/imsw-multi/qmultiinputcontext.h
@@ -0,0 +1,117 @@
+/****************************************************************************
+**
+** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies).
+** All rights reserved.
+** Contact: Nokia Corporation (qt-info@nokia.com)
+**
+** This file is part of the plugins of the Qt Toolkit.
+**
+** $QT_BEGIN_LICENSE:LGPL$
+** No Commercial Usage
+** This file contains pre-release code and may not be distributed.
+** You may use this file in accordance with the terms and conditions
+** contained in the Technology Preview License Agreement accompanying
+** this package.
+**
+** GNU Lesser General Public License Usage
+** Alternatively, this file may be used under the terms of the GNU Lesser
+** General Public License version 2.1 as published by the Free Software
+** Foundation and appearing in the file LICENSE.LGPL included in the
+** packaging of this file. Please review the following information to
+** ensure the GNU Lesser General Public License version 2.1 requirements
+** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
+**
+** In addition, as a special exception, Nokia gives you certain additional
+** rights. These rights are described in the Nokia Qt LGPL Exception
+** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
+**
+** If you have questions regarding the use of this file, please contact
+** Nokia at qt-info@nokia.com.
+**
+**
+**
+**
+**
+**
+**
+**
+** $QT_END_LICENSE$
+**
+****************************************************************************/
+
+/****************************************************************************
+**
+** Definition of QMultiInputContext class
+**
+** Copyright (C) 2004 immodule for Qt Project. All rights reserved.
+**
+** This file is written to contribute to Nokia Corporation and/or its subsidiary(-ies) under their own
+** licence. You may use this file under your Qt license. Following
+** description is copied from their original file headers. Contact
+** immodule-qt@freedesktop.org if any conditions of this licensing are
+** not clear to you.
+**
+****************************************************************************/
+
+#ifndef QMULTIINPUTCONTEXT_H
+#define QMULTIINPUTCONTEXT_H
+
+#ifndef QT_NO_IM
+
+#include <QtGui/qwidget.h>
+#include <QtGui/qinputcontext.h>
+#include <QtCore/qstring.h>
+#include <QtCore/qnamespace.h>
+#include <QtCore/qmap.h>
+#include <QtCore/qpointer.h>
+#include <QtCore/qlist.h>
+
+QT_BEGIN_NAMESPACE
+
+class QMultiInputContext : public QInputContext
+{
+ Q_OBJECT
+public:
+ QMultiInputContext();
+ ~QMultiInputContext();
+
+ QString identifierName();
+ QString language();
+
+#if defined(Q_WS_X11)
+ bool x11FilterEvent( QWidget *keywidget, XEvent *event );
+#endif // Q_WS_X11
+ bool filterEvent( const QEvent *event );
+
+ void reset();
+ void update();
+ void mouseHandler( int x, QMouseEvent *event );
+ QFont font() const;
+ bool isComposing() const;
+
+ QList<QAction *> actions();
+
+ QWidget *focusWidget() const;
+ void setFocusWidget(QWidget *w);
+
+ void widgetDestroyed( QWidget *w );
+
+ QInputContext *slave() { return slaves.at(current); }
+ const QInputContext *slave() const { return slaves.at(current); }
+
+protected Q_SLOTS:
+ void changeSlave(QAction *);
+private:
+ void *unused;
+ int current;
+ QList<QInputContext *> slaves;
+ QMenu *menu;
+ QAction *separator;
+ QStringList keys;
+};
+
+#endif // Q_NO_IM
+
+QT_END_NAMESPACE
+
+#endif // QMULTIINPUTCONTEXT_H
diff --git a/src/plugins/inputmethods/imsw-multi/qmultiinputcontextplugin.cpp b/src/plugins/inputmethods/imsw-multi/qmultiinputcontextplugin.cpp
new file mode 100644
index 0000000000..37e7da8b2c
--- /dev/null
+++ b/src/plugins/inputmethods/imsw-multi/qmultiinputcontextplugin.cpp
@@ -0,0 +1,111 @@
+/****************************************************************************
+**
+** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies).
+** All rights reserved.
+** Contact: Nokia Corporation (qt-info@nokia.com)
+**
+** This file is part of the plugins of the Qt Toolkit.
+**
+** $QT_BEGIN_LICENSE:LGPL$
+** No Commercial Usage
+** This file contains pre-release code and may not be distributed.
+** You may use this file in accordance with the terms and conditions
+** contained in the Technology Preview License Agreement accompanying
+** this package.
+**
+** GNU Lesser General Public License Usage
+** Alternatively, this file may be used under the terms of the GNU Lesser
+** General Public License version 2.1 as published by the Free Software
+** Foundation and appearing in the file LICENSE.LGPL included in the
+** packaging of this file. Please review the following information to
+** ensure the GNU Lesser General Public License version 2.1 requirements
+** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
+**
+** In addition, as a special exception, Nokia gives you certain additional
+** rights. These rights are described in the Nokia Qt LGPL Exception
+** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
+**
+** If you have questions regarding the use of this file, please contact
+** Nokia at qt-info@nokia.com.
+**
+**
+**
+**
+**
+**
+**
+**
+** $QT_END_LICENSE$
+**
+****************************************************************************/
+
+/****************************************************************************
+**
+** Implementation of QMultiInputContextPlugin class
+**
+** Copyright (C) 2004 immodule for Qt Project. All rights reserved.
+**
+** This file is written to contribute to Nokia Corporation and/or its subsidiary(-ies) under their own
+** license. You may use this file under your Qt license. Following
+** description is copied from their original file headers. Contact
+** immodule-qt@freedesktop.org if any conditions of this licensing are
+** not clear to you.
+**
+****************************************************************************/
+
+#ifndef QT_NO_IM
+#include "qmultiinputcontext.h"
+#include "qmultiinputcontextplugin.h"
+#include <qinputcontextplugin.h>
+#include <qstringlist.h>
+
+QT_BEGIN_NAMESPACE
+
+QMultiInputContextPlugin::QMultiInputContextPlugin()
+{
+}
+
+QMultiInputContextPlugin::~QMultiInputContextPlugin()
+{
+}
+
+QStringList QMultiInputContextPlugin::keys() const
+{
+ // input method switcher should named with "imsw-" prefix to
+ // prevent to be listed in ordinary input method list.
+ return QStringList( QLatin1String("imsw-multi") );
+}
+
+QInputContext *QMultiInputContextPlugin::create( const QString &key )
+{
+ if (key != QLatin1String("imsw-multi"))
+ return 0;
+ return new QMultiInputContext;
+}
+
+QStringList QMultiInputContextPlugin::languages( const QString & )
+{
+ return QStringList();
+}
+
+QString QMultiInputContextPlugin::displayName( const QString &key )
+{
+ if (key != QLatin1String("imsw-multi"))
+ return QString();
+ return tr( "Multiple input method switcher" );
+}
+
+QString QMultiInputContextPlugin::description( const QString &key )
+{
+ if (key != QLatin1String("imsw-multi"))
+ return QString();
+ return tr( "Multiple input method switcher that uses the context menu of the text widgets" );
+}
+
+
+Q_EXPORT_STATIC_PLUGIN(QMultiInputContextPlugin)
+Q_EXPORT_PLUGIN2(qimsw_multi, QMultiInputContextPlugin)
+
+QT_END_NAMESPACE
+
+#endif
diff --git a/src/plugins/inputmethods/imsw-multi/qmultiinputcontextplugin.h b/src/plugins/inputmethods/imsw-multi/qmultiinputcontextplugin.h
new file mode 100644
index 0000000000..9d7b17b6de
--- /dev/null
+++ b/src/plugins/inputmethods/imsw-multi/qmultiinputcontextplugin.h
@@ -0,0 +1,85 @@
+/****************************************************************************
+**
+** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies).
+** All rights reserved.
+** Contact: Nokia Corporation (qt-info@nokia.com)
+**
+** This file is part of the plugins of the Qt Toolkit.
+**
+** $QT_BEGIN_LICENSE:LGPL$
+** No Commercial Usage
+** This file contains pre-release code and may not be distributed.
+** You may use this file in accordance with the terms and conditions
+** contained in the Technology Preview License Agreement accompanying
+** this package.
+**
+** GNU Lesser General Public License Usage
+** Alternatively, this file may be used under the terms of the GNU Lesser
+** General Public License version 2.1 as published by the Free Software
+** Foundation and appearing in the file LICENSE.LGPL included in the
+** packaging of this file. Please review the following information to
+** ensure the GNU Lesser General Public License version 2.1 requirements
+** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
+**
+** In addition, as a special exception, Nokia gives you certain additional
+** rights. These rights are described in the Nokia Qt LGPL Exception
+** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
+**
+** If you have questions regarding the use of this file, please contact
+** Nokia at qt-info@nokia.com.
+**
+**
+**
+**
+**
+**
+**
+**
+** $QT_END_LICENSE$
+**
+****************************************************************************/
+
+/****************************************************************************
+**
+** Definition of QMultiInputContextPlugin class
+**
+** Copyright (C) 2004 immodule for Qt Project. All rights reserved.
+**
+** This file is written to contribute to Nokia Corporation and/or its subsidiary(-ies) under their own
+** license. You may use this file under your Qt license. Following
+** description is copied from their original file headers. Contact
+** immodule-qt@freedesktop.org if any conditions of this licensing are
+** not clear to you.
+**
+****************************************************************************/
+
+#ifndef QMULTIINPUTCONTEXTPLUGIN_H
+#define QMULTIINPUTCONTEXTPLUGIN_H
+
+#ifndef QT_NO_IM
+
+#include "qmultiinputcontext.h"
+#include <QtGui/qinputcontextplugin.h>
+#include <QtCore/qstringlist.h>
+
+QT_BEGIN_NAMESPACE
+
+class QMultiInputContextPlugin : public QInputContextPlugin
+{
+ Q_OBJECT
+public:
+ QMultiInputContextPlugin();
+ ~QMultiInputContextPlugin();
+
+ QStringList keys() const;
+ QInputContext *create( const QString &key );
+ QStringList languages( const QString &key );
+ QString displayName( const QString &key );
+ QString description( const QString &key );
+};
+
+#endif // QT_NO_IM
+
+QT_END_NAMESPACE
+
+#endif // QMULTIINPUTCONTEXTPLUGIN_H
diff --git a/src/plugins/inputmethods/inputmethods.pro b/src/plugins/inputmethods/inputmethods.pro
new file mode 100644
index 0000000000..e1ca847519
--- /dev/null
+++ b/src/plugins/inputmethods/inputmethods.pro
@@ -0,0 +1,3 @@
+TEMPLATE = subdirs
+
+SUBDIRS = imsw-multi