home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / qt3_emx.zip / examples / tablet / scribble.h < prev    next >
C/C++ Source or Header  |  2001-10-11  |  1KB  |  51 lines

  1. /****************************************************************************
  2. ** $Id:  qt/scribble.h   3.0.0   edited Jul 27 17:01 $
  3. **
  4. ** Copyright ( C ) 1992-2000 Trolltech AS.  All rights reserved.
  5. **
  6. ** This file is part of an example program for Qt.  This example
  7. ** program may be used, distributed and modified without limitation.
  8. **
  9. *****************************************************************************/
  10.  
  11. #ifndef SCRIBBLE_H
  12. #define SCRIBBLE_H
  13.  
  14. #include <qmainwindow.h>
  15. #include <qpen.h>
  16. #include <qpoint.h>
  17. #include <qpixmap.h>
  18. #include <qwidget.h>
  19. #include <qstring.h>
  20. #include <qpointarray.h>
  21.  
  22. class QMouseEvent;
  23. class QResizeEvent;
  24. class QPaintEvent;
  25. class QSpinBox;
  26. class QToolButton;
  27. class Canvas;
  28.  
  29. class Scribble : public QMainWindow
  30. {
  31.     Q_OBJECT
  32.  
  33. public:
  34.     Scribble( QWidget *parent = 0, const char *name = 0 );
  35.  
  36. protected:
  37.     Canvas* canvas;
  38.  
  39.     QSpinBox *bPWidth;
  40.     QToolButton *bPColor, *bSave, *bClear;
  41.  
  42. protected slots:
  43.     void slotSave();
  44.     void slotColor();
  45.     void slotWidth( int );
  46.     void slotClear();
  47.  
  48. };
  49.  
  50. #endif
  51.