
Well, i'm sorry guys, but i cant maintain 2 site for pysta while coding, so i think i'll just focus on
http://code.google.com/p/pysta , please go there, you can get latest release there.
And please leave comment, i will very happy if you do that :)
What is pysta
A GUI for python, that use my tridi 2D/3D software rendering engine that simulate a complete Windows Vista Desktop, like Aero Glass effect,taskbar, startmenu,tray,widget/sidebar,3D task switcher, etc.
Currently, after 4 days work, i have implement these feature:
- taskbar, data and time
- window Aero look and effect
- some simple component : button, edit, checkbox, radio, page/tabbed
- effect that can be turn on/off :
- Blurry form background
- Glassy form
- Fade in/out
- Maximize/restore
!Screenshots
UpdateExplorer class, desktop icon





!Sample application code
This code is a sample with a button that if it click it will run same application again, so multiple same form will appear on screen
class tsampleapp(tframe):
appname='Sample App'
def __init__(me):
tframe.__init__(me,app,20,20,400,300,'Sample Application')
p=tpage(me,10,20,280,208)
t1=p.addtab(0,0,'Hint me de')
t2=p.addtab(0,1,'Make you smile')
c=tbutton(t1,10,20,240,'Click this and run another me')
p.settab(0)
c.onMdown.append(me.click)
def click(me,s):
inform("Running another me, click OK")
runapp('sample.py')
tsampleapp().show()
That code will look like this when run on pysta framework.
