Re: wxPython Conventions

2006-02-05 Thread Jared Russell
Thanks for all the replies. I'm admittedly new to GUI programming, so I'm making sure to read up on the MVC pattern and related things like the observer pattern. I appreciate the help. Jared -- http://mail.python.org/mailman/listinfo/python-list

Re: wxPython Conventions

2006-02-01 Thread Johan Lindberg
Iain King skrev: > How do you gain access to the system tray? Use wx.TaskBarIcon. See http://wiki.wxpython.org/index.cgi/FlashingTaskbarIcon for snippets. /Johan -- http://mail.python.org/mailman/listinfo/python-list

Re: wxPython Conventions

2006-02-01 Thread Iain King
Jared Russell wrote: > To mess around with it, I decided to create a small app to check my > Gmail. I want something that will just sit in my system tray checking > for new emails every ten minutes or so. How do you gain access to the system tray? Iain -- http://mail.python.org/mailman/listi

Re: wxPython Conventions

2006-02-01 Thread Magnus Lycka
Jared Russell wrote: > My other question involved the proper location of specific functions. Never mix business with plea^h^h^h^hGUI. I'd suggest that you write a Python module with all your business logic that you can test from the interactive interpreter. Roughly like this: >>> import gmailche

Re: wxPython Conventions

2006-01-31 Thread [EMAIL PROTECTED]
I'm also fairly new to wxPython, but I've done GUI's in a variety of languages.I'm not sure about putting the systray - haven't had to do it. But your second question, put it in it's own class. For desktop apps I almost allways do a limited M/V/C pattern - M/VC - ok so I mung the view and con

wxPython Conventions

2006-01-30 Thread Jared Russell
I've recently decided to try my hand at GUI programming with wxPython, and I've got a couple questions about the general conventions regarding it. To mess around with it, I decided to create a small app to check my Gmail. I want something that will just sit in my system tray checking for new emai