summaryrefslogtreecommitdiffstats
path: root/examples/canvas/canvas.py
blob: 3039cdbd2ec55a02efd8fd89901ef7284ab5143d (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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
#!/usr/bin/env python

import sys
from PyTQt.qt import *
from PyTQt.qtcanvas import *
import random


butterfly_fn = TQString.null
butterflyimg = []
logo_fn = TQString.null
logoimg = []
bouncy_logo = None
views = []


class ImageItem(TQCanvasRectangle):
    def __init__(self,img,canvas):
        TQCanvasRectangle.__init__(self,canvas)
        self.imageRTTI=984376
        self.image=img
        self.pixmap=TQPixmap()
        self.setSize(self.image.width(), self.image.height())
        self.pixmap.convertFromImage(self.image, TQt.OrderedAlphaDither);

    def rtti(self):
        return self.imageRTTI

    def hit(self,p):
        ix = round(p.x()-self.x())
        iy = round(p.y()-self.y())
        if not self.image.valid( ix , iy ):
            return False
        self.pixel = self.image.pixel( ix, iy )
        return  (tqAlpha( self.pixel ) != 0)

    def drawShape(self,p):
        p.drawPixmap( round(self.x()), round(self.y()), self.pixmap )


class NodeItem(TQCanvasEllipse):
    def __init__(self,canvas):
        TQCanvasEllipse.__init__(self,6,6,canvas)
        self.__inList=[]
        self.__outList=[]
        self.setPen(TQPen(TQt.black))
        self.setBrush(TQBrush(TQt.red))
        self.setZ(128)

    def addInEdge(self,edge):
        self.__inList.append(edge)

    def addOutEdge(self,edge):
        self.__outList.append(edge)

    def moveBy(self,dx,dy):
        TQCanvasEllipse.moveBy(self,dx,dy)
        for each_edge in self.__inList:
            each_edge.setToPoint( int(self.x()), int(self.y()) )
        for each_edge in self.__outList:
            each_edge.setFromPoint( int(self.x()), int(self.y()) )

class EdgeItem(TQCanvasLine):
    __c=0
    def __init__(self,fromNode, toNode,canvas):
        TQCanvasLine.__init__(self,canvas)
        self.__c=self.__c+1
        self.setPen(TQPen(TQt.black))
        self.setBrush(TQBrush(TQt.red))
        fromNode.addOutEdge(self)
        toNode.addInEdge(self)
        self.setPoints(int(fromNode.x()),int(fromNode.y()), int(toNode.x()), int(toNode.y()))
        self.setZ(127)

    def setFromPoint(self,x,y):
        self.setPoints(x,y,self.endPoint().x(),self.endPoint().y())

    def setToPoint(self,x,y):
        self.setPoints(self.startPoint().x(), self.startPoint().y(),x,y)

    def count(self):
        return self.__c

    def moveBy(self,dx,dy):
        pass


class FigureEditor(TQCanvasView):
    def __init__(self,c,parent,name,f):
        TQCanvasView.__init__(self,c,parent,name,f)
        self.__moving=0
        self.__moving_start= 0

    def contentsMousePressEvent(self,e): # TQMouseEvent e
        point = self.inverseWorldMatrix().map(e.pos())
        ilist = self.canvas().collisions(point) #TQCanvasItemList ilist
        for each_item in ilist:
            if each_item.rtti()==984376:
                if not each_item.hit(point):
                    continue
            self.__moving=each_item
            self.__moving_start=point
            return
        self.__moving=0

    def clear(self):
        ilist = self.canvas().allItems()
        for each_item in ilist:
            if each_item:
                each_item.setCanvas(None)
                del each_item
        self.canvas().update()

    def contentsMouseMoveEvent(self,e):
        if  self.__moving :
            point = self.inverseWorldMatrix().map(e.pos());
            self.__moving.moveBy(point.x() - self.__moving_start.x(),point.y() - self.__moving_start.y())
            self.__moving_start = point
        self.canvas().update()


class BouncyLogo(TQCanvasSprite):
    def __init__(self,canvas):
        # Make sure the logo exists.
        global bouncy_logo
        if bouncy_logo is None:
            bouncy_logo=TQCanvasPixmapArray("qt-trans.xpm")

        TQCanvasSprite.__init__(self,None,canvas)
        self.setSequence(bouncy_logo)
        self.setAnimated(True)
        self.initPos()
        self.logo_rtti=1234

    def rtti(self):
        return self.logo_rtti

    def initPos(self):
        self.initSpeed()
        trial=1000
        self.move(random.random()%self.canvas().width(), random.random()%self.canvas().height())
        self.advance(0)
        trial=trial-1
        while (trial & (self.xVelocity()==0 )& (self.yVelocity()==0)):
            elf.move(random.random()%self.canvas().width(), random.random()%self.canvas().height())
            self.advance(0)
            trial=trial-1

    def initSpeed(self):
        speed=4.0
        d=random.random()%1024/1024.0
        self.setVelocity(d*speed*2-speed, (1-d)*speed*2-speed)

    def advance(self,stage):
        if stage==0:
            vx=self.xVelocity()
            vy=self.yVelocity()
            if (vx==0.0) & (vy==0.0):
                self.initSpeed()
                vx=self.xVelocity()
                vy=self.yVelocity()

            nx=self.x()+vx
            ny=self.y()+vy

            if (nx<0) | (nx >= self.canvas().width()):
                vx=-vx
            if (ny<0) | (ny >= self.canvas().height()):
                vy=-vy

            for bounce in [0,1,2,3]:
                l=self.collisions(False)
                for hit in l:
                    if (hit.rtti()==1234) & (hit.collidesWith(self)):
                        if bounce==0:
                            vx=-vx
                        elif bounce==1:
                            vy=-vy
                            vx=-vx
                        elif bounce==2:
                            vx=-vx
                        elif bounce==3:
                            vx=0
                            vy=0
                        self.setVelocity(vx,vy)
                        break

            if (self.x()+vx < 0) | (self.x()+vx >= self.canvas().width()):
                vx=0
            if (self.y()+vy < 0) | (self.y()+vy >= self.canvas().height()):
                vy=0

            self.setVelocity(vx,vy)
        elif stage==1:
            TQCanvasItem.advance(self,stage)


class Main (TQMainWindow):
    def __init__(self,c,parent,name,f=0):
        TQMainWindow.__init__(self,parent,name,f)
        self.editor=FigureEditor(c,self,name,f)
        self.printer=TQPrinter()
        self.dbf_id=0
        self.canvas=c
        self.mainCount=0
        file=TQPopupMenu(self.menuBar())
        file.insertItem("&Fill canvas", self.init, TQt.CTRL+TQt.Key_F)
        file.insertItem("&Erase canvas", self.clear, TQt.CTRL+TQt.Key_E)
        file.insertItem("&New view", self.newView, TQt.CTRL+TQt.Key_N)
        file.insertSeparator();
        file.insertItem("&Print", self._print, TQt.CTRL+TQt.Key_P)
        file.insertSeparator()
        file.insertItem("E&xit", tqApp, SLOT("quit()"), TQt.CTRL+TQt.Key_Q)
        self.menuBar().insertItem("&File", file)

        edit = TQPopupMenu(self.menuBar() )
        edit.insertItem("Add &Circle",  self.addCircle, TQt.ALT+TQt.Key_C)
        edit.insertItem("Add &Hexagon",  self.addHexagon, TQt.ALT+TQt.Key_H)
        edit.insertItem("Add &Polygon",  self.addPolygon, TQt.ALT+TQt.Key_P)
        edit.insertItem("Add Spl&ine", self.addSpline, TQt.ALT+TQt.Key_I)
        edit.insertItem("Add &Text", self.addText, TQt.ALT+TQt.Key_T)
        edit.insertItem("Add &Line", self.addLine, TQt.ALT+TQt.Key_L)
        edit.insertItem("Add &Rectangle", self.addRectangle, TQt.ALT+TQt.Key_R)
        edit.insertItem("Add &Sprite", self.addSprite, TQt.ALT+TQt.Key_S)
        edit.insertItem("Create &Mesh", self.addMesh, TQt.ALT+TQt.Key_M )
        edit.insertItem("Add &Alpha-blended image", self.addButterfly, TQt.ALT+TQt.Key_A)
        self.menuBar().insertItem("&Edit", edit)

        view = TQPopupMenu(self.menuBar() );
        view.insertItem("&Enlarge", self.enlarge, TQt.SHIFT+TQt.CTRL+TQt.Key_Plus);
        view.insertItem("Shr&ink", self.shrink, TQt.SHIFT+TQt.CTRL+TQt.Key_Minus);
        view.insertSeparator();
        view.insertItem("&Rotate clockwise", self.rotateClockwise, TQt.CTRL+TQt.Key_PageDown);
        view.insertItem("Rotate &counterclockwise", self.rotateCounterClockwise, TQt.CTRL+TQt.Key_PageUp);
        view.insertItem("&Zoom in", self.zoomIn, TQt.CTRL+TQt.Key_Plus);
        view.insertItem("Zoom &out", self.zoomOut, TQt.CTRL+TQt.Key_Minus);
        view.insertItem("Translate left", self.moveL, TQt.CTRL+TQt.Key_Left);
        view.insertItem("Translate right", self.moveR, TQt.CTRL+TQt.Key_Right);
        view.insertItem("Translate up", self.moveU, TQt.CTRL+TQt.Key_Up);
        view.insertItem("Translate down", self.moveD, TQt.CTRL+TQt.Key_Down);
        view.insertItem("&Mirror", self.mirror, TQt.CTRL+TQt.Key_Home);
        self.menuBar().insertItem("&View", view)

        self.options = TQPopupMenu( self.menuBar() );
        self.dbf_id = self.options.insertItem("Double buffer", self.toggleDoubleBuffer)
        self.options.setItemChecked(self.dbf_id, True)
        self.menuBar().insertItem("&Options",self.options)

        self.menuBar().insertSeparator();

        help = TQPopupMenu( self.menuBar() )
        help.insertItem("&About", self.help, TQt.Key_F1)
        help.insertItem("&About TQt", self.aboutTQt, TQt.Key_F2)
        help.setItemChecked(self.dbf_id, True)
        self.menuBar().insertItem("&Help",help)

        self.statusBar()

        self.setCentralWidget(self.editor)

        self.printer = 0
        self.tb=0
        self.tp=0

        self.init()

    def init(self):
        self.clear()
        r=24
        r=r+1
        random.seed(r)
        for i in range(self.canvas.width()//56):
            self.addButterfly()
        for j in range(self.canvas.width()//85):
            self.addHexagon()
        for k in range(self.canvas.width()//128):
            self.addLogo()

    def newView(self):
        m=Main(self.canvas,None,"new windiw",TQt.WDestructiveClose)
        tqApp.setMainWidget(m)
        m.show()
        tqApp.setMainWidget(None)
        views.append(m)

    def clear(self):
        self.editor.clear()

    def help(self):
        TQMessageBox.information(None, "PyTQt Canvas Example",
            "<h3>The PyTQt TQCanvas classes example</h3><hr>"
            "<p>This is the PyTQt implementation of "
            "TQt canvas example.</p> by Sadi Kose "
            "<i>(kose@nuvox.net)</i><hr>"
            "<ul>"
            "<li> Press ALT-S for some sprites."
            "<li> Press ALT-C for some circles."
            "<li> Press ALT-L for some lines."
            "<li> Drag the objects around."
            "<li> Read the code!"
            "</ul>","Dismiss")

    def aboutTQt(self):
        TQMessageBox.aboutTQt(self,"PyTQt Canvas Example")

    def toggleDoubleBuffer(self):
        s = not self.options.isItemChecked(self.dbf_id)
        self.options.setItemChecked(self.dbf_id,s)
        self.canvas.setDoubleBuffering(s)

    def enlarge(self):
        self.canvas.resize(self.canvas.width()*4//3, self.canvas.height()*4//3)

    def shrink(self):
        self.canvas.resize(self.canvas.width()*3//4, self.canvas.height()*3//4)

    def rotateClockwise(self):
        m = self.editor.worldMatrix()
        m.rotate( 22.5 )
        self.editor.setWorldMatrix( m )

    def rotateCounterClockwise(self):
        m = self.editor.worldMatrix()
        m.rotate( -22.5 )
        self.editor.setWorldMatrix( m )

    def zoomIn(self):
        m = self.editor.worldMatrix()
        m.scale( 2.0, 2.0 )
        self.editor.setWorldMatrix( m )

    def zoomOut(self):
        m = self.editor.worldMatrix()
        m.scale( 0.5, 0.5 )
        self.editor.setWorldMatrix( m )

    def mirror(self):
        m = self.editor.worldMatrix()
        m.scale( -1, 1 )
        self.editor.setWorldMatrix( m )

    def moveL(self):
        m = self.editor.worldMatrix()
        m.translate( -16, 0 )
        self.editor.setWorldMatrix( m )

    def moveR(self):
        m = self.editor.worldMatrix()
        m.translate( +16, 0 )
        self.editor.setWorldMatrix( m )

    def moveU(self):
        m = self.editor.worldMatrix()
        m.translate( 0, -16 )
        self.editor.setWorldMatrix( m )

    def moveD(self):
        m = self.editor.worldMatrix();
        m.translate( 0, +16 );
        self.editor.setWorldMatrix( m )

    def _print(self):
        if not self.printer:
            self.printer = TQPrinter()
        if  self.printer.setup(self) :
            pp=TQPainter(self.printer)
        self.canvas.drawArea(TQRect(0,0,self.canvas.width(),self.canvas.height()),pp,False)

    def addSprite(self):
        i = BouncyLogo(self.canvas)
        i.setZ(256*random.random()%256);
        i.show();

    def addButterfly(self):
        if butterfly_fn.isEmpty():
            return
        if not butterflyimg:
            butterflyimg.append(TQImage())
            butterflyimg[0].load(butterfly_fn)
            butterflyimg.append(TQImage())
            butterflyimg[1] = butterflyimg[0].smoothScale( int(butterflyimg[0].width()*0.75),
                int(butterflyimg[0].height()*0.75) )
            butterflyimg.append(TQImage())
            butterflyimg[2] = butterflyimg[0].smoothScale( int(butterflyimg[0].width()*0.5),
                int(butterflyimg[0].height()*0.5) )
            butterflyimg.append(TQImage())
            butterflyimg[3] = butterflyimg[0].smoothScale( int(butterflyimg[0].width()*0.25),
                int(butterflyimg[0].height()*0.25) )

        i = ImageItem(butterflyimg[int(4*random.random()%4)],self.canvas)
        i.move((self.canvas.width()-butterflyimg[0].width())*random.random()%(self.canvas.width()-butterflyimg[0].width()),
            (self.canvas.height()-butterflyimg[0].height())*random.random()%(self.canvas.height()-butterflyimg[0].height()))
        i.setZ(256*random.random()%256+250);
        i.show()

    def addLogo(self):
        if logo_fn.isEmpty():
            return;
        if not logoimg:
            logoimg.append(TQImage())
            logoimg[0].load( logo_fn )
            logoimg.append(TQImage())
            logoimg[1] = logoimg[0].smoothScale( int(logoimg[0].width()*0.75),
                int(logoimg[0].height()*0.75) )
            logoimg.append(TQImage())
            logoimg[2] = logoimg[0].smoothScale( int(logoimg[0].width()*0.5),
                int(logoimg[0].height()*0.5) )
            logoimg.append(TQImage())
            logoimg[3] = logoimg[0].smoothScale( int(logoimg[0].width()*0.25),
                int(logoimg[0].height()*0.25) );

        i = ImageItem(logoimg[int(4*random.random()%4)],self.canvas)
        i.move((self.canvas.width()-logoimg[0].width())*random.random()%(self.canvas.width()-logoimg[0].width()),
            (self.canvas.height()-logoimg[0].width())*random.random()%(self.canvas.height()-logoimg[0].width()))
        i.setZ(256*random.random()%256+256)
        i.show()

    def addCircle(self):
        i = TQCanvasEllipse(50,50,self.canvas)
        i.setBrush( TQBrush(TQColor(random.randint(0,256)%32*8,random.randint(0,256)%32*8,random.randint(0,256)%32*8) ))
        i.move(self.canvas.width()*random.random()%self.canvas.width(),self.canvas.width()*random.random()%self.canvas.height())
        i.setZ(256*random.random()%256)
        i.show()

    def addHexagon(self):
        i = TQCanvasPolygon(self.canvas)
        size = round(canvas.width() / 25)
        pa=TQPointArray(6)
        pa.setPoint(0,TQPoint(2*size,0))
        pa.setPoint(1,TQPoint(size,-size*173//100))
        pa.setPoint(2,TQPoint(-size,-size*173//100))
        pa.setPoint(3,TQPoint(-2*size,0))
        pa.setPoint(4,TQPoint(-size,size*173//100))
        pa.setPoint(5,TQPoint(size,size*173//100))
        i.setPoints(pa)
        i.setBrush( TQBrush(TQColor(random.randint(0,256)%32*8,random.randint(0,256)%32*8,random.randint(0,256)%32*8) ))
        i.move(self.canvas.width()*random.random()%self.canvas.width(),self.canvas.width()*random.random()%self.canvas.height())
        i.setZ(256*random.random()%256)
        i.show()

    def addPolygon(self):
        i = TQCanvasPolygon(self.canvas)
        size = self.canvas.width()//2
        pa=TQPointArray(6)
        pa.setPoint(0, TQPoint(0,0))
        pa.setPoint(1, TQPoint(size,size//5))
        pa.setPoint(2, TQPoint(size*4//5,size))
        pa.setPoint(3, TQPoint(size//6,size*5//4))
        pa.setPoint(4, TQPoint(size*3//4,size*3//4))
        pa.setPoint(5, TQPoint(size*3//4,size//4))

        i.setPoints(pa)
        i.setBrush(TQBrush( TQColor(random.randint(0,256)%32*8,random.randint(0,256)%32*8,random.randint(0,256)%32*8)) )
        i.move(self.canvas.width()*random.random()%self.canvas.width(),self.canvas.width()*random.random()%self.canvas.height())
        i.setZ(256*random.random()%256)
        i.show()

    def addSpline(self):
        i = TQCanvasSpline(self.canvas)
        size = canvas.width()//6
        pa=TQPointArray(12)
        pa.setPoint(0,TQPoint(0,0))
        pa.setPoint(1,TQPoint(size//2,0))
        pa.setPoint(2,TQPoint(size,size//2))
        pa.setPoint(3,TQPoint(size,size))
        pa.setPoint(4,TQPoint(size,size*3//2))
        pa.setPoint(5,TQPoint(size//2,size*2))
        pa.setPoint(6,TQPoint(0,size*2))
        pa.setPoint(7,TQPoint(-size//2,size*2))
        pa.setPoint(8,TQPoint(size//4,size*3//2))
        pa.setPoint(9,TQPoint(0,size))
        pa.setPoint(10,TQPoint(-size//4,size//2))
        pa.setPoint(11,TQPoint(-size//2,0))
        i.setControlPoints(pa)
        i.setBrush( TQBrush(TQColor(random.randint(0,256)%32*8,random.randint(0,256)%32*8,random.randint(0,256)%32*8) ))
        i.move(self.canvas.width()*random.random()%self.canvas.width(),self.canvas.width()*random.random()%self.canvas.height())
        i.setZ(256*random.random()%256)
        i.show()

    def addText(self):
        i = TQCanvasText(self.canvas)
        i.setText("TQCanvasText")
        i.move(self.canvas.width()*random.random()%self.canvas.width(),self.canvas.width()*random.random()%self.canvas.height())
        i.setZ(256*random.random()%256)
        i.show()

    def addLine(self):
        i = TQCanvasLine(self.canvas);
        i.setPoints( random.randint(0,self.canvas.width())%self.canvas.width(), random.randint(0,self.canvas.width())%self.canvas.height(),
                random.randint(0,self.canvas.width())%self.canvas.width(), random.randint(0,self.canvas.width())%self.canvas.height() )
        i.setPen( TQPen(TQColor(random.randint(0,256),random.randint(0,256),random.randint(0,256)), 6) )
        i.setZ(256*random.random()%256)
        i.show()

    def ternary(self,exp,x,y):
        if exp:
            return x
        else:
            return y

    def addMesh(self):
        x0 = 0;
        y0 = 0;

        if not self.tb:
            self.tb = TQBrush( TQt.red )
        if not self.tp:
            self.tp = TQPen( TQt.black )

        nodecount = 0;

        w = self.canvas.width()
        h = self.canvas.height()

        dist = 30
        rows = h // dist
        cols = w // dist

        #ifndef TQT_NO_PROGRESSDIALOG
        #progress=TQProgressDialog( "Creating mesh...", "Abort", rows,
        #         self, "progress", True );
        #endif

        lastRow=[]
        for c in range(cols):
            lastRow.append(NodeItem(self.canvas))
        for j in range(rows):
            n = self.ternary(j%2 , cols-1 , cols)
            prev = 0;
            for i in range(n):
                el = NodeItem( self.canvas )
                nodecount=nodecount+1
                r = 20*20*random.random()
                xrand = r %20
                yrand = (r/20) %20
                el.move( xrand + x0 + i*dist + self.ternary(j%2 , dist/2 , 0 ),
                    yrand + y0 + j*dist );

                if  j > 0 :
                    if  i < cols-1 :
                        EdgeItem( lastRow[i], el, self.canvas ).show()
                    if  j%2 :
                        EdgeItem( lastRow[i+1], el, self.canvas ).show()
                    elif i > 0 :
                        EdgeItem( lastRow[i-1], el, self.canvas ).show()
                if  prev:
                    EdgeItem( prev, el, self.canvas ).show()

                if  i > 0 :
                    lastRow[i-1] = prev
                prev = el
                el.show()

            lastRow[n-1]=prev
            #ifndef TQT_NO_PROGRESSDIALOG
            #progress.setProgress( j )
            #if  progress.wasCancelled() :
            #   break
            #endif

        #ifndef TQT_NO_PROGRESSDIALOG
        #progress.setProgress( rows )
        #endif
        #// tqDebug( "%d nodes, %d edges", nodecount, EdgeItem::count() );

    def addRectangle(self):
        i = TQCanvasRectangle( random.randint(0,self.canvas.width())%self.canvas.width(),
            random.randint(0,self.canvas.width())%self.canvas.height(),
            self.canvas.width()//5,self.canvas.width()//5,self.canvas)
        z = random.randint(0,256)%256
        i.setBrush( TQBrush(TQColor(z,z,z) ))
        i.setPen( TQPen(TQColor(random.randint(0,self.canvas.width())%32*8,
            random.randint(0,self.canvas.width())%32*8,
            random.randint(0,self.canvas.width())%32*8), 6) )
        i.setZ(z)
        i.show()


if __name__=='__main__':
    app=TQApplication(sys.argv)

    if len(sys.argv) > 1:
        butterfly_fn=TQString(sys.argv[1])
    else:
        butterfly_fn=TQString("butterfly.png")

    if len(sys.argv) > 2:
        logo_fn = TQString(sys.argv[2])
    else:
        logo_fn=TQString("qtlogo.png")

    canvas=TQCanvas(800,600)
    canvas.setAdvancePeriod(30)
    m=Main(canvas,None,"pyqt canvas example")
    m.resize(m.sizeHint())

    tqApp.setMainWidget(m)
    m.setCaption("TQt Canvas Example ported to PyTQt")
    if TQApplication.desktop().width() > m.width() + 10 and TQApplication.desktop().height() > m.height() + 30:
        m.show()
    else:
        m.showMaximized()

    m.show();
    #//    m.help();
    tqApp.setMainWidget(None);

    TQObject.connect( tqApp, SIGNAL("lastWindowClosed()"), tqApp, SLOT("quit()") )

    app.exec_loop()

    # We need to explicitly delete the canvas now (and, therefore, the main
    # window beforehand) to make sure that the sprite logo doesn't get garbage
    # collected first.
    views = []
    del m
    del canvas