On Sat, Sep 26, 2009 at 12:58 AM, Dave Angel <da...@ieee.org> wrote: > Threader Slash wrote: > >> ---------- Forwarded message ---------- >>> From: J Sisson <sisso...@gmail.com> >>> To: Nobody <nob...@nowhere.com> >>> Date: Thu, 24 Sep 2009 19:18:03 -0500 >>> Subject: Re: IDE for python similar to visual basic >>> >>> >>> On Sun, Sep 13, 2009 at 6:25 AM, Nobody <nob...@nowhere.com> wrote: >>> >>> >>> >>>> On Fri, 11 Sep 2009 05:27:59 -0700, r wrote: >>>> >>>> >>>> >>> >>> >>>> > Sounds like "somebody" failed to get input >>>> >>>> >>>>> from their users at design time. Or "somebody" has the inability to >>>>> relate to their end users. >>>>> >>>>> >>>> You're assuming that there is some "right" answer which is appropriate >>>> for >>>> all users. There isn't. >>>> >>>> >>>> >>> I worked for a company that had a team composed of graphic artists, QA >>> types, etc...that did nothing but draw up GUI's, show them to customers, >>> revise them, write up runnable "dummies" of the approved GUI's, performed >>> usability studies with our customers using the dummy GUI's, and finally >>> handed the GUI's over to dev so they could put in the guts to make it "do >>> stuff". >>> >>> "Bugs" or "Cases" involving the GUI needing revision because a button >>> needed to be moved for usability were *extremely* rare, and the GUI >>> didn't >>> require an additional toolset that allowed end users to tweak them. >>> >>> >>> >>> >> My favorite IDE : Eclipse >> >> http://pydev.org/download.html >> >> >> http://www.ibm.com/developerworks/opensource/library/os-eclipse-visualstudio >> >> http://www.eclipse.org >> >> Of course you have also the Mono: >> http://monodevelop.com >> >> Cheers.....|:0), >> >> >> > But where's the GUI designer for Eclipse/Python? That's what the OP was > asking about. > > GUI builders I've heard of, but not evaluated include: > > Boa > wxGlade > wxFormBuilder > Wing IDE > > DaveA > > Hi Dave,
Sorry, I just read and answer your post quickly... so, here again about the IDE development for Python http://pydev.org/download.html http://pydev.org/screenshots.html Also, please read and follow instructions: http://pydev.org/manual_101_root.html http://pydev.org/manual_101_project_conf2.html About IDE you can install the Qt 2.5 or 2.6 SDK, it comes with the Qt Designer. You just generates the design you want, then you save it as myGUI.ui. The only point is, if you are working on Windows with Python Qt, when you have to run on console the command pyuic4 that will generate your ui_myGUI.py source file to link it to your system, it doesn't work. After reading and googling around, I find out that aparently there is a bug on it for the free edtion of Qt for Windows. Hope that it can be fixed soon. This means, that the GUI has to done code by yourself using Qt programming. The Qt Design should just work fine for Linux, because I didn't hear about any similar problem. For Qt C++ on Windows it is apparently working -- but I didn't try yet: http://labs.trolltech.com/blogs/2007/07/11/develop-qt-applications-in-eclipse I hope this help. cheers.....
-- http://mail.python.org/mailman/listinfo/python-list