File indexing completed on 2024-12-22 04:17:08

0001 /***************************************************************************
0002                                   tw.h
0003                              -------------------
0004     begin                : November, 2004
0005     copyright            : (C) 2004 by Barth Netterfield
0006     email                :
0007  ***************************************************************************/
0008 
0009 /***************************************************************************
0010  *                                                                         *
0011  *   This program is free software; you can redistribute it and/or modify  *
0012  *   it under the terms of the GNU General Public License as published by  *
0013  *   the Free Software Foundation; either version 2 of the License, or     *
0014  *   (at your option) any later version.                                   *
0015  *                                                                         *
0016  ***************************************************************************/
0017 #ifndef TW_H
0018 #define TW_H
0019 #include <qtimer.h>
0020 #include <qpixmap.h>
0021 #include <qwidget.h>
0022 #include <qdatetime.h>
0023 #include <qapplication.h>
0024 
0025 class TW : public QWidget {
0026   Q_OBJECT
0027  public:
0028   TW(QApplication *a, QWidget *parent = 0);
0029   void testPixMapLines(int length);
0030   void testPixMapFill(int size);
0031   void testDrawPixmap();
0032   void testDrawImage();
0033   void testPlotBench(bool ppressure = false);
0034   QApplication *_a;
0035 };
0036 
0037 #endif