author | Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com> |
Fri, 19 Feb 2010 23:40:16 +0200 | |
branch | RCL_3 |
changeset 4 | 3b1da2848fc7 |
parent 3 | 41300fa6a67c |
child 5 | d3bac044e0f0 |
permissions | -rw-r--r-- |
0 | 1 |
/**************************************************************************** |
2 |
** |
|
4
3b1da2848fc7
Revision: 201003
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
3
diff
changeset
|
3 |
** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). |
0 | 4 |
** All rights reserved. |
5 |
** Contact: Nokia Corporation (qt-info@nokia.com) |
|
6 |
** |
|
3
41300fa6a67c
Revision: 201003
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
7 |
** This file is part of the QtGui module of the Qt Toolkit. |
0 | 8 |
** |
9 |
** $QT_BEGIN_LICENSE:LGPL$ |
|
10 |
** No Commercial Usage |
|
11 |
** This file contains pre-release code and may not be distributed. |
|
12 |
** You may use this file in accordance with the terms and conditions |
|
13 |
** contained in the Technology Preview License Agreement accompanying |
|
14 |
** this package. |
|
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 |
** If you have questions regarding the use of this file, please contact |
|
29 |
** Nokia at qt-info@nokia.com. |
|
30 |
** |
|
31 |
** |
|
32 |
** |
|
33 |
** |
|
34 |
** |
|
35 |
** |
|
36 |
** |
|
37 |
** |
|
38 |
** $QT_END_LICENSE$ |
|
39 |
** |
|
40 |
****************************************************************************/ |
|
41 |
||
42 |
#ifndef QCOEFEPINPUTCONTEXT_P_H |
|
43 |
#define QCOEFEPINPUTCONTEXT_P_H |
|
44 |
||
45 |
// |
|
46 |
// W A R N I N G |
|
47 |
// ------------- |
|
48 |
// |
|
49 |
// This file is not part of the Qt API. It exists purely as an |
|
50 |
// implementation detail. This header file may change from version to |
|
51 |
// version without notice, or even be removed. |
|
52 |
// |
|
53 |
// We mean it. |
|
54 |
// |
|
55 |
||
56 |
#ifndef QT_NO_IM |
|
57 |
||
58 |
#include "qinputcontext.h" |
|
59 |
#include <qhash.h> |
|
60 |
#include <private/qcore_symbian_p.h> |
|
61 |
#include <private/qt_s60_p.h> |
|
62 |
||
63 |
#include <fepbase.h> |
|
64 |
#include <aknedsts.h> |
|
65 |
||
66 |
QT_BEGIN_NAMESPACE |
|
67 |
||
3
41300fa6a67c
Revision: 201003
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
68 |
class QCoeFepInputContext : public QInputContext, |
41300fa6a67c
Revision: 201003
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
69 |
public MCoeFepAwareTextEditor, |
41300fa6a67c
Revision: 201003
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
70 |
public MCoeFepAwareTextEditor_Extension1, |
41300fa6a67c
Revision: 201003
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
71 |
public MObjectProvider |
0 | 72 |
{ |
73 |
Q_OBJECT |
|
74 |
||
75 |
public: |
|
76 |
QCoeFepInputContext(QObject *parent = 0); |
|
77 |
~QCoeFepInputContext(); |
|
78 |
||
79 |
QString identifierName() { return QLatin1String("coefep"); } |
|
80 |
QString language(); |
|
81 |
||
82 |
void reset(); |
|
83 |
void update(); |
|
84 |
||
85 |
bool filterEvent(const QEvent *event); |
|
86 |
void mouseHandler( int x, QMouseEvent *event); |
|
3
41300fa6a67c
Revision: 201003
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
87 |
bool isComposing() const { return !m_preeditString.isEmpty(); } |
0 | 88 |
|
89 |
void setFocusWidget(QWidget * w); |
|
90 |
void widgetDestroyed(QWidget *w); |
|
91 |
||
92 |
TCoeInputCapabilities inputCapabilities(); |
|
93 |
||
94 |
private: |
|
95 |
void commitCurrentString(bool triggeredBySymbian); |
|
96 |
void updateHints(bool mustUpdateInputCapabilities); |
|
97 |
void applyHints(Qt::InputMethodHints hints); |
|
98 |
void applyFormat(QList<QInputMethodEvent::Attribute> *attributes); |
|
99 |
void queueInputCapabilitiesChanged(); |
|
3
41300fa6a67c
Revision: 201003
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
100 |
bool needsInputPanel(); |
0 | 101 |
|
102 |
private Q_SLOTS: |
|
103 |
void ensureInputCapabilitiesChanged(); |
|
104 |
||
105 |
// From MCoeFepAwareTextEditor |
|
106 |
public: |
|
107 |
void StartFepInlineEditL(const TDesC& aInitialInlineText, TInt aPositionOfInsertionPointInInlineText, |
|
108 |
TBool aCursorVisibility, const MFormCustomDraw* aCustomDraw, |
|
109 |
MFepInlineTextFormatRetriever& aInlineTextFormatRetriever, |
|
110 |
MFepPointerEventHandlerDuringInlineEdit& aPointerEventHandlerDuringInlineEdit); |
|
111 |
void UpdateFepInlineTextL(const TDesC& aNewInlineText, TInt aPositionOfInsertionPointInInlineText); |
|
112 |
void SetInlineEditingCursorVisibilityL(TBool aCursorVisibility); |
|
113 |
void CancelFepInlineEdit(); |
|
114 |
TInt DocumentLengthForFep() const; |
|
115 |
TInt DocumentMaximumLengthForFep() const; |
|
116 |
void SetCursorSelectionForFepL(const TCursorSelection& aCursorSelection); |
|
117 |
void GetCursorSelectionForFep(TCursorSelection& aCursorSelection) const; |
|
118 |
void GetEditorContentForFep(TDes& aEditorContent, TInt aDocumentPosition, TInt aLengthToRetrieve) const; |
|
119 |
void GetFormatForFep(TCharFormat& aFormat, TInt aDocumentPosition) const; |
|
120 |
void GetScreenCoordinatesForFepL(TPoint& aLeftSideOfBaseLine, TInt& aHeight, TInt& aAscent, |
|
121 |
TInt aDocumentPosition) const; |
|
122 |
private: |
|
123 |
void DoCommitFepInlineEditL(); |
|
124 |
MCoeFepAwareTextEditor_Extension1* Extension1(TBool& aSetToTrue); |
|
125 |
void ReportAknEdStateEvent(MAknEdStateObserver::EAknEdwinStateEvent aEventType); |
|
126 |
||
127 |
// From MCoeFepAwareTextEditor_Extension1 |
|
128 |
public: |
|
129 |
void SetStateTransferingOwnershipL(MCoeFepAwareTextEditor_Extension1::CState* aState, TUid aTypeSafetyUid); |
|
130 |
MCoeFepAwareTextEditor_Extension1::CState* State(TUid aTypeSafetyUid); |
|
131 |
||
132 |
// From MObjectProvider |
|
133 |
public: |
|
134 |
TTypeUid::Ptr MopSupplyObject(TTypeUid id); |
|
3
41300fa6a67c
Revision: 201003
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
135 |
MObjectProvider *MopNext(); |
0 | 136 |
|
137 |
private: |
|
138 |
QSymbianControl *m_parent; |
|
139 |
CAknEdwinState *m_fepState; |
|
140 |
QString m_preeditString; |
|
141 |
Qt::InputMethodHints m_lastImHints; |
|
142 |
TUint m_textCapabilities; |
|
143 |
bool m_inDestruction; |
|
144 |
bool m_pendingInputCapabilitiesChanged; |
|
145 |
int m_cursorVisibility; |
|
146 |
int m_inlinePosition; |
|
147 |
MFepInlineTextFormatRetriever *m_formatRetriever; |
|
148 |
MFepPointerEventHandlerDuringInlineEdit *m_pointerHandler; |
|
3
41300fa6a67c
Revision: 201003
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
149 |
int m_longPress; |
41300fa6a67c
Revision: 201003
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
150 |
int m_cursorPos; |
0 | 151 |
}; |
152 |
||
153 |
QT_END_NAMESPACE |
|
154 |
||
155 |
#endif // QT_NO_IM |
|
156 |
||
157 |
#endif // QCOEFEPINPUTCONTEXT_P_H |