00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021 #include <qwsmouse_qws.h>
00022
00023 #if defined(Q_WS_QWS) || defined(_WS_QWS_)
00024
00025 #include <qdialog.h>
00026 #include <qpixmap.h>
00027
00028 struct calibration {
00029 int x[5], xfb[5];
00030 int y[5], yfb[5];
00031 int a[7];
00032 };
00033
00034 class Calibrate : public QDialog
00035 {
00036 Q_OBJECT
00037 public:
00038 Calibrate(QWidget* parent=0, const char * name=0, WFlags=0);
00039 ~Calibrate();
00040
00041 void show();
00042 void hide();
00043
00044 private:
00045 QPoint fromDevice( const QPoint &p );
00046 bool performCalculation(void);
00047 void moveCrosshair( QPoint pt );
00048 void paintEvent( QPaintEvent * );
00049 void mouseMoveEvent( QMouseEvent * );
00050 void mouseReleaseEvent( QMouseEvent * );
00051 struct calibration cal;
00052
00053 private:
00054 void store();
00055 void reset();
00056 QPixmap logo;
00057 QPixmap saveUnder;
00058 bool showCross;
00059 QPoint crossPos;
00060 QPoint penPos;
00061 int samples;
00062 int location;
00063 };
00064
00065 #endif // _WS_QWS_