source: trunk/src/gui/inputmethod/qcoefepinputcontext_p.h@ 613

Last change on this file since 613 was 561, checked in by Dmitry A. Kuminov, 16 years ago

trunk: Merged in qt 4.6.1 sources.

  • Property svn:eol-style set to native
File size: 5.7 KB
Line 
1/****************************************************************************
2**
3** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
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#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
66QT_BEGIN_NAMESPACE
67
68class QCoeFepInputContext : public QInputContext,
69 public MCoeFepAwareTextEditor,
70 public MCoeFepAwareTextEditor_Extension1,
71 public MObjectProvider
72{
73 Q_OBJECT
74
75public:
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);
87 bool isComposing() const { return !m_preeditString.isEmpty(); }
88
89 void setFocusWidget(QWidget * w);
90 void widgetDestroyed(QWidget *w);
91
92 TCoeInputCapabilities inputCapabilities();
93
94private:
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();
100 bool needsInputPanel();
101
102private Q_SLOTS:
103 void ensureInputCapabilitiesChanged();
104
105 // From MCoeFepAwareTextEditor
106public:
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;
122private:
123 void DoCommitFepInlineEditL();
124 MCoeFepAwareTextEditor_Extension1* Extension1(TBool& aSetToTrue);
125 void ReportAknEdStateEvent(MAknEdStateObserver::EAknEdwinStateEvent aEventType);
126
127 // From MCoeFepAwareTextEditor_Extension1
128public:
129 void SetStateTransferingOwnershipL(MCoeFepAwareTextEditor_Extension1::CState* aState, TUid aTypeSafetyUid);
130 MCoeFepAwareTextEditor_Extension1::CState* State(TUid aTypeSafetyUid);
131
132 // From MObjectProvider
133public:
134 TTypeUid::Ptr MopSupplyObject(TTypeUid id);
135 MObjectProvider *MopNext();
136
137private:
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;
149 int m_longPress;
150 int m_cursorPos;
151};
152
153QT_END_NAMESPACE
154
155#endif // QT_NO_IM
156
157#endif // QCOEFEPINPUTCONTEXT_P_H
Note: See TracBrowser for help on using the repository browser.