src/gui/inputmethod/qcoefepinputcontext_p.h
changeset 0 1918ee327afb
child 3 41300fa6a67c
equal deleted inserted replaced
-1:000000000000 0:1918ee327afb
       
     1 /****************************************************************************
       
     2 **
       
     3 ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
       
     4 ** All rights reserved.
       
     5 ** Contact: Nokia Corporation (qt-info@nokia.com)
       
     6 **
       
     7 ** This file is part of the QtGui of the Qt Toolkit.
       
     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 
       
    68 class Q_GUI_EXPORT QCoeFepInputContext : public QInputContext,
       
    69                                          public MCoeFepAwareTextEditor,
       
    70                                          public MCoeFepAwareTextEditor_Extension1,
       
    71                                          public MObjectProvider
       
    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);
       
    87     bool isComposing() const { return m_isEditing; }
       
    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();
       
   100 
       
   101 private Q_SLOTS:
       
   102     void ensureInputCapabilitiesChanged();
       
   103 
       
   104     // From MCoeFepAwareTextEditor
       
   105 public:
       
   106     void StartFepInlineEditL(const TDesC& aInitialInlineText, TInt aPositionOfInsertionPointInInlineText,
       
   107             TBool aCursorVisibility, const MFormCustomDraw* aCustomDraw,
       
   108             MFepInlineTextFormatRetriever& aInlineTextFormatRetriever,
       
   109             MFepPointerEventHandlerDuringInlineEdit& aPointerEventHandlerDuringInlineEdit);
       
   110     void UpdateFepInlineTextL(const TDesC& aNewInlineText, TInt aPositionOfInsertionPointInInlineText);
       
   111     void SetInlineEditingCursorVisibilityL(TBool aCursorVisibility);
       
   112     void CancelFepInlineEdit();
       
   113     TInt DocumentLengthForFep() const;
       
   114     TInt DocumentMaximumLengthForFep() const;
       
   115     void SetCursorSelectionForFepL(const TCursorSelection& aCursorSelection);
       
   116     void GetCursorSelectionForFep(TCursorSelection& aCursorSelection) const;
       
   117     void GetEditorContentForFep(TDes& aEditorContent, TInt aDocumentPosition, TInt aLengthToRetrieve) const;
       
   118     void GetFormatForFep(TCharFormat& aFormat, TInt aDocumentPosition) const;
       
   119     void GetScreenCoordinatesForFepL(TPoint& aLeftSideOfBaseLine, TInt& aHeight, TInt& aAscent,
       
   120             TInt aDocumentPosition) const;
       
   121 private:
       
   122     void DoCommitFepInlineEditL();
       
   123     MCoeFepAwareTextEditor_Extension1* Extension1(TBool& aSetToTrue);
       
   124 	void ReportAknEdStateEvent(MAknEdStateObserver::EAknEdwinStateEvent aEventType);
       
   125 
       
   126     // From MCoeFepAwareTextEditor_Extension1
       
   127 public:
       
   128     void SetStateTransferingOwnershipL(MCoeFepAwareTextEditor_Extension1::CState* aState, TUid aTypeSafetyUid);
       
   129     MCoeFepAwareTextEditor_Extension1::CState* State(TUid aTypeSafetyUid);
       
   130 
       
   131     // From MObjectProvider
       
   132 public:
       
   133     TTypeUid::Ptr MopSupplyObject(TTypeUid id);
       
   134 
       
   135 private:
       
   136     QSymbianControl *m_parent;
       
   137     CAknEdwinState *m_fepState;
       
   138     QString m_preeditString;
       
   139     Qt::InputMethodHints m_lastImHints;
       
   140     TUint m_textCapabilities;
       
   141     bool m_isEditing;
       
   142     bool m_inDestruction;
       
   143     bool m_pendingInputCapabilitiesChanged;
       
   144     int m_cursorVisibility;
       
   145     int m_inlinePosition;
       
   146     MFepInlineTextFormatRetriever *m_formatRetriever;
       
   147     MFepPointerEventHandlerDuringInlineEdit *m_pointerHandler;
       
   148 };
       
   149 
       
   150 QT_END_NAMESPACE
       
   151 
       
   152 #endif // QT_NO_IM
       
   153 
       
   154 #endif // QCOEFEPINPUTCONTEXT_P_H