Main Page | Namespace List | Class Hierarchy | Alphabetical List | Class List | Directories | File List | Namespace Members | Class Members | File Members | Related Pages

calibrate.h

Go to the documentation of this file.
00001 /**********************************************************************
00002 ** Copyright (C) 2000 Trolltech AS.  All rights reserved.
00003 **
00004 ** This file is part of Qtopia Environment.
00005 **
00006 ** This file may be distributed and/or modified under the terms of the
00007 ** GNU General Public License version 2 as published by the Free Software
00008 ** Foundation and appearing in the file LICENSE.GPL included in the
00009 ** packaging of this file.
00010 **
00011 ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
00012 ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
00013 **
00014 ** See http://www.trolltech.com/gpl/ for GPL licensing information.
00015 **
00016 ** Contact info@trolltech.com if any conditions of this licensing are
00017 ** not clear to you.
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_

Generated on Sat Nov 5 16:15:25 2005 for OPIE by  doxygen 1.4.2