Re: python gui using boa

2005-11-24 Thread ash
Thanks Brian, I could do it. actually it needs all the three mouse events - LeftDown, LeftUp and MouseMove. with regards, Ashoka -- http://mail.python.org/mailman/listinfo/python-list

Re: python gui using boa

2005-11-24 Thread Brian Victor
ash wrote: > I have another query for you - how can i make a captionless frame > draggable in wxWindows? If you look at the wxPython demo, there's a Shaped Window demo under Miscellaneous that does this. The key portion is on line 86 in my version: #v+ def OnMouseMove(self, evt): if evt.Drag

Re: python gui using boa

2005-11-24 Thread ash
Thanks Brian, that was a good introduction. I have another query for you - how can i make a captionless frame draggable in wxWindows? -- http://mail.python.org/mailman/listinfo/python-list

Re: python gui using boa

2005-11-23 Thread ash
Thanks Steve, i found out the solution to the problem. but a good tutorial on sizers is still missing. -- http://mail.python.org/mailman/listinfo/python-list

Re: python gui using boa

2005-11-23 Thread Brian Victor
ash wrote: > Thanks Steve, i found out the solution to the problem. but a good > tutorial on sizers is still missing. Try this article I wrote a while back. It should at least help you get started. The code samples are written in C++, but they are trivially translated to python. (Change -> to

Re: python gui using boa

2005-11-23 Thread Steve Holden
Ashok wrote: > hi, > i am trying to develop a small gui app using boa constructor. say this > app has one frame which has one static text control. i want the frame > to resize itself to the width of the text contrl when i change the > label of the text control via SetLabel(). how can i do this in b