qinputcontext.h
上传用户:detong
上传日期:2022-06-22
资源大小:20675k
文件大小:4k
源码类别:

系统编程

开发平台:

Unix_Linux

  1. /****************************************************************************
  2. **
  3. ** Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies).
  4. ** Contact: Qt Software Information (qt-info@nokia.com)
  5. **
  6. ** This file is part of the QtGui module of the Qt Toolkit.
  7. **
  8. ** Commercial Usage
  9. ** Licensees holding valid Qt Commercial licenses may use this file in
  10. ** accordance with the Qt Commercial License Agreement provided with the
  11. ** Software or, alternatively, in accordance with the terms contained in
  12. ** a written agreement between you and Nokia.
  13. **
  14. **
  15. ** GNU General Public License Usage
  16. ** Alternatively, this file may be used under the terms of the GNU
  17. ** General Public License versions 2.0 or 3.0 as published by the Free
  18. ** Software Foundation and appearing in the file LICENSE.GPL included in
  19. ** the packaging of this file.  Please review the following information
  20. ** to ensure GNU General Public Licensing requirements will be met:
  21. ** http://www.fsf.org/licensing/licenses/info/GPLv2.html and
  22. ** http://www.gnu.org/copyleft/gpl.html.  In addition, as a special
  23. ** exception, Nokia gives you certain additional rights. These rights
  24. ** are described in the Nokia Qt GPL Exception version 1.3, included in
  25. ** the file GPL_EXCEPTION.txt in this package.
  26. **
  27. ** Qt for Windows(R) Licensees
  28. ** As a special exception, Nokia, as the sole copyright holder for Qt
  29. ** Designer, grants users of the Qt/Eclipse Integration plug-in the
  30. ** right for the Qt/Eclipse Integration to link to functionality
  31. ** provided by Qt Designer and its related libraries.
  32. **
  33. ** If you are unsure which license is appropriate for your use, please
  34. ** contact the sales department at qt-sales@nokia.com.
  35. **
  36. ****************************************************************************/
  37. /****************************************************************************
  38. **
  39. ** Definition of QInputContext class
  40. **
  41. ** Copyright (C) 2003-2004 immodule for Qt Project.  All rights reserved.
  42. **
  43. ** This file is written to contribute to Nokia Corporation and/or its subsidiary(-ies) under their own
  44. ** license. You may use this file under your Qt license. Following
  45. ** description is copied from their original file headers. Contact
  46. ** immodule-qt@freedesktop.org if any conditions of this licensing are
  47. ** not clear to you.
  48. **
  49. ****************************************************************************/
  50. #ifndef QINPUTCONTEXT_H
  51. #define QINPUTCONTEXT_H
  52. #include <QtCore/qobject.h>
  53. #include <QtCore/qglobal.h>
  54. #include <QtGui/qevent.h>
  55. #include <QtCore/qstring.h>
  56. #include <QtCore/qlist.h>
  57. #include <QtGui/qaction.h>
  58. #ifndef QT_NO_IM
  59. QT_BEGIN_HEADER
  60. QT_BEGIN_NAMESPACE
  61. QT_MODULE(Gui)
  62. class QWidget;
  63. class QFont;
  64. class QPopupMenu;
  65. class QInputContextPrivate;
  66. class Q_GUI_EXPORT QInputContext : public QObject
  67. {
  68.     Q_OBJECT
  69.     Q_DECLARE_PRIVATE(QInputContext)
  70. public:
  71.     explicit QInputContext(QObject* parent = 0);
  72.     virtual ~QInputContext();
  73.     virtual QString identifierName() = 0;
  74.     virtual QString language() = 0;
  75.     virtual void reset() = 0;
  76.     virtual void update();
  77.     virtual void mouseHandler( int x, QMouseEvent *event);
  78.     virtual QFont font() const;
  79.     virtual bool isComposing() const = 0;
  80.     QWidget *focusWidget() const;
  81.     virtual void setFocusWidget( QWidget *w );
  82.     virtual void widgetDestroyed(QWidget *w);
  83.     virtual QList<QAction *> actions();
  84. #if defined(Q_WS_X11)
  85.     virtual bool x11FilterEvent( QWidget *keywidget, XEvent *event );
  86. #endif // Q_WS_X11
  87.     virtual bool filterEvent( const QEvent *event );
  88.     void sendEvent(const QInputMethodEvent &event);
  89.     enum StandardFormat {
  90.         PreeditFormat,
  91.         SelectionFormat
  92.     };
  93.     QTextFormat standardFormat(StandardFormat s) const;
  94. private:
  95.     friend class QWidget;
  96.     friend class QWidgetPrivate;
  97.     friend class QInputContextFactory;
  98.     friend class QApplication;
  99. private:   // Disabled copy constructor and operator=
  100.     QInputContext( const QInputContext & );
  101.     QInputContext &operator=( const QInputContext & );
  102. };
  103. QT_END_NAMESPACE
  104. QT_END_HEADER
  105. #endif //Q_NO_IM
  106. #endif // QINPUTCONTEXT_H