Path: csiph.com!v102.xanadu-bbs.net!xanadu-bbs.net!feeder.erje.net!eu.feeder.erje.net!weretis.net!feeder4.news.weretis.net!rt.uk.eu.org!newsfeed.xs4all.nl!newsfeed4a.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.006 X-Spam-Evidence: '*H*': 0.99; '*S*': 0.00; 'subject:Python': 0.06; 'received:80.91': 0.09; 'received:80.91.229': 0.09; 'received:gmane.org': 0.09; 'received:list': 0.09; 'python': 0.11; 'gui': 0.12; 'drag': 0.16; 'received:80.91.229.3': 0.16; 'received:plane.gmane.org': 0.16; 'wrote:': 0.18; 'do.': 0.18; 'widget': 0.19; 'separate': 0.22; 'header:User-Agent:1': 0.23; 'builder': 0.24; 'frameworks': 0.24; 'file.': 0.24; 'header:X -Complaints-To:1': 0.27; 'tried': 0.27; 'then.': 0.30; 'code': 0.31; 'created': 0.35; 'but': 0.35; 'doubt': 0.36; 'subject:?': 0.36; 'should': 0.36; 'searching': 0.37; 'to:addr:python-list': 0.38; 'does': 0.39; 'visual': 0.39; 'to:addr:python.org': 0.39; 'received:org': 0.40; 'most': 0.60; 'great': 0.65; 'received:178': 0.74; 'click': 0.77 X-Injected-Via-Gmane: http://gmane.org/ To: python-list@python.org From: Sturla Molden Subject: Re: .Net Like Gui Builder for Python? Date: Fri, 25 Jul 2014 20:04:29 +0000 (UTC) References: Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Gmane-NNTP-Posting-Host: ip-155-53-72-178.dialup.ice.net User-Agent: NewsTap/4.0.1 (iPad) X-: 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: 20 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1406318705 news.xs4all.nl 2906 [2001:888:2000:d::a6]:39325 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:75211 Orochi wrote: > I tried PyQt Designer' and 'Glade', No doubt its great but it created only interface. > I have to code all the things in separate file. That's what you should do. Keep autogenerated and hand-written code separate. Also take a look at wxFormBuilder. > what I was searching for is Visual Studio .Net like Gui builder where you > drag and drop widgets and just double click on the widget to edit code of that widget. Most Python GUI frameworks are based on layout managers. "Drag and drop" does not work so well then. Sturla