summaryrefslogtreecommitdiffstats
path: root/examples/drawlines.py
blob: c1553f2c47dd45cd943afbe8166b9cc8ff6b53d9 (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
#!/usr/bin/env python

import sys, random
from python_tqt.qt import *

TRUE = 1
FALSE = 0

MAXPOINTS = 2000;  # maximum number of points
MAXCOLORS = 40;

#
# ConnectWidget - draws connected lines
#

class ConnectWidget(TQWidget):
	def __init__(self):
		TQWidget.__init__(self)
		self.setEraseColor( TQt.white )                # white background
		self.count = 0;
		self.down = FALSE
		
		self.points = []
		self.colors = []

		for i in range(MAXPOINTS):           # init arrays
			self.points.append(TQPoint())
		for i in range(MAXCOLORS):
			self.colors.append(TQColor( random.randint(0,255), random.randint(0,255), random.randint(0,255) ))

#
# Handles paint events for the connect widget.
#
	def paintEvent(self, pe):
		paint = TQPainter( self )
		for i in range(self.count-1):               # connect all points
			for j in range(i+1, self.count):
				paint.setPen( self.colors[random.randint(0,MAXCOLORS-1)] ) # set random pen color
				paint.drawLine( self.points[i], self.points[j] )           # draw line

#
# Handles mouse press events for the connect widget.
#
	def mousePressEvent(self, me):
		self.down = TRUE
		self.count = 0                                  # start recording points
		self.erase()                                    # erase widget contents

#
# Handles mouse release events for the connect widget.
#
	def mouseReleaseEvent(self, me ):
		self.down = FALSE                               # done recording points
		self.update()                                   # draw the lines

#
# Handles mouse move events for the connect widget.
#
	def mouseMoveEvent(self, me):	
		if self.down and self.count < MAXPOINTS:
			paint = TQPainter( self )
			self.points[self.count] = TQPoint(me.pos())   # add point
			paint.drawPoint( me.pos() )          # plot point
			self.count = self.count+1

#
# Create and display a ConnectWidget.
#
a = TQApplication( sys.argv )
connect = ConnectWidget()
connect.setCaption( "PyTQt Example - Draw lines")
a.setMainWidget( connect )
connect.show()
a.exec_loop()