Path: csiph.com!usenet.pasdenom.info!aioe.org!news.stack.nl!newsfeed.xs4all.nl!newsfeed2.news.xs4all.nl!xs4all!post.news.xs4all.nl!not-for-mail Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.005 X-Spam-Evidence: '*H*': 0.99; '*S*': 0.00; 'static': 0.04; 'method.': 0.07; 'ide': 0.09; 'interpreted': 0.09; 'cc:addr:python-list': 0.11; 'python': 0.11; 'gui': 0.12; 'mostly': 0.14; '.ui': 0.16; 'builder.': 0.16; 'cc:name:python list': 0.16; 'fabio': 0.16; 'guys,': 0.16; 'subclass': 0.16; 'subject:GUI': 0.16; 'wrote:': 0.18; 'code,': 0.22; '(in': 0.22; 'cc:addr:python.org': 0.22; 'builder': 0.24; 'frameworks': 0.24; 'integrate': 0.24; 'cheers,': 0.24; 'cc:2**0': 0.24; '>': 0.26; 'header:In-Reply-To:1': 0.27; 'external': 0.29; 'wonder': 0.29; 'designer': 0.30; 'nature': 0.30; 'message-id:@mail.gmail.com': 0.30; 'url:mailman': 0.30; 'code': 0.31; 'usually': 0.31; 'file': 0.32; 'probably': 0.32; 'interface': 0.32; 'url:python': 0.33; 'actual': 0.34; 'received:209.85': 0.35; 'but': 0.35; 'received:google.com': 0.35; 'add': 0.35; 'there': 0.35; 'url:listinfo': 0.36; 'url:org': 0.36; 'so,': 0.37; 'received:209': 0.37; 'implement': 0.38; 'actions': 0.38; 'pm,': 0.38; 'that,': 0.38; 'does': 0.39; 'enough': 0.39; 'url:mail': 0.40; 'skip:u 10': 0.60; 'matter': 0.61; 'saving': 0.69; 'click': 0.77; 'comparable': 0.84; 'conceived': 0.84; '2013': 0.98 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:mime-version:in-reply-to:references:from:date:message-id :subject:to:cc:content-type; bh=Kw+v3AQDLytQtEcbG5smIBaHaXOnaIx3Y9k5DVu8ZIY=; b=dqSIYEVQNSWrcmIjGeW04gdKY1kOWEARZWm+Wr7TeOmrtubHa05xqLvaP0MPyR9wPb S73sV62w2pzNSBUlTf2ToG2W5GuY6cwIyHSEhjcf32ID4ElvAVhpFk96WDeLXDqR2vsk M+95E8IjsNKCQYk4eeFnmdv8v2XYFxy7So7xii7YnoXesHaW8IYI1iW59iXXCe/FJJFB zUPc0r68m2Rhl5t+EPHIHoZyq4h25bImOuHOlwy6hBAS/w2C+awA1Mt25eHWPcGLEUV3 43+RydUz+gCyOmajdS5+zpbiiYyqYuFeFPNHq9pIi4XeFHK+c1orp8vh1jXoBNQBHQlg zHig== X-Received: by 10.59.11.199 with SMTP id ek7mr13874257ved.19.1365361504779; Sun, 07 Apr 2013 12:05:04 -0700 (PDT) MIME-Version: 1.0 In-Reply-To: <20130407194031.ee59e3bc94b02b03d735990f@gmx.net> References: <20130407194031.ee59e3bc94b02b03d735990f@gmx.net> From: Fabio Zadrozny Date: Sun, 7 Apr 2013 16:04:44 -0300 Subject: Re: IDE for GUI Designer To: Wolfgang Keller Content-Type: multipart/alternative; boundary=047d7bd6b1567b8eb404d9c9ffba Cc: python list X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.python Message-ID: Lines: 85 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1365361507 news.xs4all.nl 6948 [2001:888:2000:d::a6]:46687 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:43012 --047d7bd6b1567b8eb404d9c9ffba Content-Type: text/plain; charset=ISO-8859-1 Well, I usually use the Qt Designer and it does work well for me. It generates a .ui file with it which has to be passed to pyuic to generate the actual Python code -- and you have to generate a subclass to implement the slots -- for that, I add an external builder to Eclipse, so, in the end it's mostly a matter of saving the ui in designer and going on to implement the actual code for the actions in PyDev/Eclipse (sure, you don't click on a link to add Python code, but for me that separation is good). Cheers, Fabio On Sun, Apr 7, 2013 at 2:40 PM, Wolfgang Keller wrote: > > Guys, is this, I wonder if there is an IDE with native support for the > > development of GUI's > > A decent Python IDE would probably integrate well enough with any decent > GUI builder. If there was one (decent GUI builder). > > Unfortunately there's afaik currently no GUI builder available for any > of the Python GUI frameworks that actually makes use of the dynamic > interpreted nature of Python (in a way comparable to Cocoa's Interface > Builder or the Visualworks Smalltalk IDE). They are unfortunately all > just conceived following the clumsy tedious static C++-ish > code-generation method. X-( > > Sincerely, > > Wolfgang > -- > http://mail.python.org/mailman/listinfo/python-list > --047d7bd6b1567b8eb404d9c9ffba Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable
Well, I usually use the Qt Designer and it does work well = for me.

It generates a .ui file with it which has to be = passed to pyuic to generate the actual Python code -- and you have to gener= ate a subclass to implement the slots -- for that, I add an external builde= r to Eclipse, so, in the end it's mostly a matter of saving the ui in d= esigner and going on to implement the actual code for the actions in PyDev/= Eclipse (sure, you don't click on a link to add Python code, but for me= that separation is good).

Cheers,

Fabio


On Sun, Apr 7, 2013 at 2:40 PM, Wolfgang Keller <feliphil@gmx.net><= /span> wrote:
> Guys, is this, I wond= er if there is an IDE with native support for the
> development of GUI's

A decent Python IDE would probably integrate well enough with any dec= ent
GUI builder. If there was one (decent GUI builder).

Unfortunately there's afaik currently no GUI builder available for any<= br> of the Python GUI frameworks that actually makes use of the dynamic
interpreted nature of Python (in a way comparable to Cocoa's Interface<= br> Builder or the Visualworks Smalltalk IDE). They are unfortunately all
just conceived following the clumsy tedious static C++-ish
code-generation method. X-(

Sincerely,

Wolfgang
--
http://mail.python.org/mailman/listinfo/python-list

--047d7bd6b1567b8eb404d9c9ffba--