Path: csiph.com!fu-berlin.de!uni-berlin.de!not-for-mail From: Michael Torrie Newsgroups: comp.lang.python Subject: Re: Recommendation for GUI lib? Date: Tue, 7 Jun 2016 16:34:42 -0600 Lines: 26 Message-ID: References: <24ECEF58-FF95-4B7B-9A7B-2B16800AD959@mostrom.pp.se> <20160607214532.GA17231@localhost> Mime-Version: 1.0 Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 7bit X-Trace: news.uni-berlin.de IdfpvYHtv3ZKqe4nDUjHcQSAmnG0Klo4/Ri/w5K5tcaQ== Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.019 X-Spam-Evidence: '*H*': 0.96; '*S*': 0.00; 'method.': 0.05; 'list...': 0.07; 'bindings': 0.09; 'python': 0.10; 'python.': 0.11; 'apps': 0.15; 'batteries': 0.16; 'from:addr:torriem': 0.16; 'from:name:michael torrie': 0.16; 'included,': 0.16; 'qt,': 0.16; 'received:io': 0.16; 'received:psf.io': 0.16; 'subject:GUI': 0.16; 'wrote:': 0.16; 'gui': 0.18; 'are.': 0.22; 'bit': 0.23; 'slightly': 0.23; 'header:In-Reply-To:1': 0.24; 'all.': 0.24; 'header:User-Agent:1': 0.26; 'comfortable': 0.27; 'said,': 0.27; 'accidentally': 0.29; 'platforms.': 0.33; 'message-id:@gmail.com': 0.34; 'ones': 0.35; 'c++': 0.35; 'quite': 0.35; 'but': 0.36; 'there': 0.36; 'to:addr:python-list': 0.36; 'subject:?': 0.36; 'pm,': 0.36; 'subject:: ': 0.37; 'turn': 0.37; 'received:org': 0.37; "didn't": 0.39; 'received:192': 0.39; 'to:addr:python.org': 0.40; 'still': 0.40; 'some': 0.40; 'yes': 0.62; 'charset:windows-1252': 0.62; 'more': 0.63; 'different': 0.63; 'complete': 0.63; 'times': 0.63; 'python-list': 0.66; 'reply': 0.68; 'designer.': 0.84; 'gtk': 0.84; 'packing': 0.84 X-Virus-Scanned: amavisd-new at torriefamily.org User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Thunderbird/45.1.0 In-Reply-To: <20160607214532.GA17231@localhost> X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-Mailman-Original-Message-ID: X-Mailman-Original-References: <24ECEF58-FF95-4B7B-9A7B-2B16800AD959@mostrom.pp.se> <20160607214532.GA17231@localhost> Xref: csiph.com comp.lang.python:109639 Accidentally didn't reply to the list... On 06/07/2016 03:45 PM, Roland Koebler via Python-list wrote: > You can also try Qt (http://qt.io), and one of its Python-bindings. > But I was never happy with Qt and think some GUI-concepts of GTK+ are much > better than the ones of Qt, and I like Glade much more than the Qt designer. Yes there are some concepts in regards to GUI layout that are different from Qt and GTK. Particularly how widgets are packed into boxes and how they resize. At first I didn't like the Qt model with its "spring" spacer thing. But I got used to it and found it was actually more flexible than GTK's packing method. Just a slightly different way of thinking about layout is all. I think the GTK bindings are a bit more comfortable in Python that Qt's are. Often times Qt apps turn out more like C++ apps transliterated into Python. They don't quite feel as "pythonic" as the GTK+ apps. Both are excellent toolkits. I think Qt is more complete and has more batteries included, particularly on the other platforms. For example, vector graphics. GTK+ defers that to Cairo. All that said, I still prefer GTK also.