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

系统编程

开发平台:

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.
  23. **
  24. ** Qt for Windows(R) Licensees
  25. ** As a special exception, Nokia, as the sole copyright holder for Qt
  26. ** Designer, grants users of the Qt/Eclipse Integration plug-in the
  27. ** right for the Qt/Eclipse Integration to link to functionality
  28. ** provided by Qt Designer and its related libraries.
  29. **
  30. ** If you are unsure which license is appropriate for your use, please
  31. ** contact the sales department at qt-sales@nokia.com.
  32. **
  33. ****************************************************************************/
  34. #ifndef QMOUSE_QWS_H
  35. #define QMOUSE_QWS_H
  36. #include <QtCore/qobject.h>
  37. #include <QtGui/qpolygon.h>
  38. QT_BEGIN_HEADER
  39. QT_BEGIN_NAMESPACE
  40. QT_MODULE(Gui)
  41. class QWSMouseHandlerPrivate;
  42. class QScreen;
  43. class Q_GUI_EXPORT QWSPointerCalibrationData
  44. {
  45. public:
  46.     enum Location { TopLeft = 0, BottomLeft = 1, BottomRight = 2, TopRight = 3,
  47.                     Center = 4, LastLocation = Center };
  48.     QPoint devPoints[5];
  49.     QPoint screenPoints[5];
  50. };
  51. class Q_GUI_EXPORT QWSMouseHandler
  52. {
  53. public:
  54.     explicit QWSMouseHandler(const QString &driver = QString(),
  55.                              const QString &device = QString());
  56.     virtual ~QWSMouseHandler();
  57.     virtual void clearCalibration() {}
  58.     virtual void calibrate(const QWSPointerCalibrationData *) {}
  59.     virtual void getCalibration(QWSPointerCalibrationData *) const {}
  60.     virtual void resume() = 0;
  61.     virtual void suspend() = 0;
  62.     void limitToScreen(QPoint &pt);
  63.     void mouseChanged(const QPoint& pos, int bstate, int wheel = 0);
  64.     const QPoint &pos() const { return mousePos; }
  65.     void setScreen(const QScreen *screen);
  66. protected:
  67.     QPoint &mousePos;
  68.     QWSMouseHandlerPrivate *d_ptr;
  69. };
  70. class Q_GUI_EXPORT QWSCalibratedMouseHandler : public QWSMouseHandler
  71. {
  72. public:
  73.     explicit QWSCalibratedMouseHandler(const QString &driver = QString(),
  74.                                        const QString &device = QString());
  75.     virtual void clearCalibration();
  76.     virtual void calibrate(const QWSPointerCalibrationData *);
  77.     virtual void getCalibration(QWSPointerCalibrationData *) const;
  78. protected:
  79.     bool sendFiltered(const QPoint &, int button);
  80.     QPoint transform(const QPoint &);
  81.     void readCalibration();
  82.     void writeCalibration();
  83.     void setFilterSize(int);
  84. private:
  85.     int a, b, c;
  86.     int d, e, f;
  87.     int s;
  88.     QPolygon samples;
  89.     int currSample;
  90.     int numSamples;
  91. };
  92. QT_END_NAMESPACE
  93. QT_END_HEADER
  94. #endif // QMOUSE_QWS_H