blob: 2f3b5025daf0211eeb7005b35187cc9f81dcda22 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
/****************************************************************************
**
** Copyright (C) 1992-2008 Trolltech ASA. All rights reserved.
**
** This file is part of an example program for Qt. This example
** program may be used, distributed and modified without limitation.
**
*****************************************************************************/
#include <qpen.h>
#include <qpixmap.h>
#include <qpoint.h>
#include <qpointarray.h>
#include <qwidget.h>
#ifndef _MY_CANVAS_
#define _MY_CANVAS_
class Canvas : public QWidget
{
Q_OBJECT
public:
Canvas( QWidget *parent = 0, const char *name = 0, WFlags fl = 0 );
virtual ~Canvas() {};
void setPenColor( const QColor &c )
{ saveColor = c;
pen.setColor( saveColor ); }
void setPenWidth( int w )
{ pen.setWidth( w ); }
QColor penColor()
{ return pen.color(); }
int penWidth()
{ return pen.width(); }
void save( const QString &filename, const QString &format );
void clearScreen();
protected:
virtual void mousePressEvent( QMouseEvent *e );
virtual void mouseReleaseEvent( QMouseEvent *e );
virtual void mouseMoveEvent( QMouseEvent *e );
virtual void resizeEvent( QResizeEvent *e );
virtual void paintEvent( QPaintEvent *e );
virtual void tabletEvent( QTabletEvent *e );
QPen pen;
QPointArray polyline;
bool mousePressed;
int oldPressure;
QColor saveColor;
QPixmap buffer;
};
#endif
|