source: trunk/src/gui/embedded/qkbdlinuxinput_qws.cpp@ 965

Last change on this file since 965 was 846, checked in by Dmitry A. Kuminov, 14 years ago

trunk: Merged in qt 4.7.2 sources from branches/vendor/nokia/qt.

  • Property svn:eol-style set to native
File size: 7.7 KB
RevLine 
[556]1/****************************************************************************
2**
[846]3** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies).
[556]4** All rights reserved.
5** Contact: Nokia Corporation ([email protected])
6**
7** This file is part of the QtGui module of the Qt Toolkit.
8**
9** $QT_BEGIN_LICENSE:LGPL$
10** Commercial Usage
11** Licensees holding valid Qt Commercial licenses may use this file in
12** accordance with the Qt Commercial License Agreement provided with the
13** Software or, alternatively, in accordance with the terms contained in
14** a written agreement between you and Nokia.
15**
16** GNU Lesser General Public License Usage
17** Alternatively, this file may be used under the terms of the GNU Lesser
18** General Public License version 2.1 as published by the Free Software
19** Foundation and appearing in the file LICENSE.LGPL included in the
20** packaging of this file. Please review the following information to
21** ensure the GNU Lesser General Public License version 2.1 requirements
22** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
23**
24** In addition, as a special exception, Nokia gives you certain additional
25** rights. These rights are described in the Nokia Qt LGPL Exception
26** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
27**
28** GNU General Public License Usage
29** Alternatively, this file may be used under the terms of the GNU
30** General Public License version 3.0 as published by the Free Software
31** Foundation and appearing in the file LICENSE.GPL included in the
32** packaging of this file. Please review the following information to
33** ensure the GNU General Public License version 3.0 requirements will be
34** met: http://www.gnu.org/copyleft/gpl.html.
35**
36** If you have questions regarding the use of this file, please contact
37** Nokia at [email protected].
38** $QT_END_LICENSE$
39**
40****************************************************************************/
41
42#include "qkbdlinuxinput_qws.h"
43
44#ifndef QT_NO_QWS_KEYBOARD
45
46#include <QSocketNotifier>
47#include <QStringList>
48
49#include <qplatformdefs.h>
50#include <private/qcore_unix_p.h> // overrides QT_OPEN
51
52#include <errno.h>
53#include <termios.h>
54
55#include <linux/kd.h>
56#include <linux/input.h>
57
58QT_BEGIN_NAMESPACE
59
60
61class QWSLinuxInputKbPrivate : public QObject
62{
63 Q_OBJECT
64public:
65 QWSLinuxInputKbPrivate(QWSLinuxInputKeyboardHandler *, const QString &);
66 ~QWSLinuxInputKbPrivate();
67
68private:
69 void switchLed(int, bool);
70
71private Q_SLOTS:
72 void readKeycode();
73
74private:
75 QWSLinuxInputKeyboardHandler *m_handler;
76 int m_fd;
77 int m_tty_fd;
78 struct termios m_tty_attr;
79 int m_orig_kbmode;
80};
81
82QWSLinuxInputKeyboardHandler::QWSLinuxInputKeyboardHandler(const QString &device)
83 : QWSKeyboardHandler(device)
84{
85 d = new QWSLinuxInputKbPrivate(this, device);
86}
87
88QWSLinuxInputKeyboardHandler::~QWSLinuxInputKeyboardHandler()
89{
90 delete d;
91}
92
93bool QWSLinuxInputKeyboardHandler::filterInputEvent(quint16 &, qint32 &)
94{
95 return false;
96}
97
98QWSLinuxInputKbPrivate::QWSLinuxInputKbPrivate(QWSLinuxInputKeyboardHandler *h, const QString &device)
99 : m_handler(h), m_fd(-1), m_tty_fd(-1), m_orig_kbmode(K_XLATE)
100{
101 setObjectName(QLatin1String("LinuxInputSubsystem Keyboard Handler"));
102
103 QString dev = QLatin1String("/dev/input/event1");
104 int repeat_delay = -1;
105 int repeat_rate = -1;
106
107 QStringList args = device.split(QLatin1Char(':'));
108 foreach (const QString &arg, args) {
109 if (arg.startsWith(QLatin1String("repeat-delay=")))
110 repeat_delay = arg.mid(13).toInt();
111 else if (arg.startsWith(QLatin1String("repeat-rate=")))
112 repeat_rate = arg.mid(12).toInt();
113 else if (arg.startsWith(QLatin1String("/dev/")))
114 dev = arg;
115 }