blob: bb4048f918abd3dd1f47ae9c5efd69ac91636904 (
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
|
/****************************************************************************
**
** Copyright (C) 1992-2008 Trolltech ASA. All rights reserved.
**
** This file is part of an example program for TQt. This example
** program may be used, distributed and modified without limitation.
**
*****************************************************************************/
#include <ntqwidget.h>
#include <ntqpainter.h>
#include <ntqapplication.h>
#include <stdlib.h>
const int MAXPOINTS = 2000; // maximum number of points
const int MAXCOLORS = 40;
//
// ConnectWidget - draws connected lines
//
class ConnectWidget : public TQWidget
{
public:
ConnectWidget( TQWidget *parent=0, const char *name=0 );
~ConnectWidget();
protected:
void paintEvent( TQPaintEvent * );
void mousePressEvent( TQMouseEvent *);
void mouseReleaseEvent( TQMouseEvent *);
void mouseMoveEvent( TQMouseEvent *);
private:
TQPoint *points; // point array
TQColor *colors; // color array
int count; // count = number of points
bool down; // TRUE if mouse down
};
//
// Constructs a ConnectWidget.
//
ConnectWidget::ConnectWidget( TQWidget *parent, const char *name )
: TQWidget( parent, name, WStaticContents )
{
setBackgroundColor( white ); // white background
count = 0;
down = FALSE;
points = new TQPoint[MAXPOINTS];
colors = new TQColor[MAXCOLORS];
for ( int i=0; i<MAXCOLORS; i++ ) // init color array
colors[i] = TQColor( rand()&255, rand()&255, rand()&255 );
}
ConnectWidget::~ConnectWidget()
{
delete[] points; // cleanup
delete[] colors;
}
//
// Handles paint events for the connect widget.
//
void ConnectWidget::paintEvent( TQPaintEvent * )
{
TQPainter paint( this );
for ( int i=0; i<count-1; i++ ) { // connect all points
for ( int j=i+1; j<count; j++ ) {
paint.setPen( colors[rand()%MAXCOLORS] ); // set random pen color
paint.drawLine( points[i], points[j] ); // draw line
}
}
}
//
// Handles mouse press events for the connect widget.
//
void ConnectWidget::mousePressEvent( TQMouseEvent * )
{
down = TRUE;
count = 0; // start recording points
erase(); // erase widget contents
}
//
// Handles mouse release events for the connect widget.
//
void ConnectWidget::mouseReleaseEvent( TQMouseEvent * )
{
down = FALSE; // done recording points
update(); // draw the lines
}
//
// Handles mouse move events for the connect widget.
//
void ConnectWidget::mouseMoveEvent( TQMouseEvent *e )
{
if ( down && count < MAXPOINTS ) {
TQPainter paint( this );
points[count++] = e->pos(); // add point
paint.drawPoint( e->pos() ); // plot point
}
}
//
// Create and display a ConnectWidget.
//
int main( int argc, char **argv )
{
TQApplication a( argc, argv );
ConnectWidget connect;
#ifndef QT_NO_WIDGET_TOPEXTRA // for TQt/Embedded minimal build
connect.setCaption( "TQt Example - Draw lines");
#endif
a.setMainWidget( &connect );
connect.show();
return a.exec();
}
|