Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #40537

Re: simple GUI environment

References <5135FF35.9010905@harvee.org>
Date 2013-03-05 16:45 +0100
Subject Re: simple GUI environment
From Vlastimil Brom <vlastimil.brom@gmail.com>
Newsgroups comp.lang.python
Message-ID <mailman.2890.1362498339.2939.python-list@python.org> (permalink)

Show all headers | View raw


2013/3/5 Eric Johansson <esj@harvee.org>:
> I need a simple GUI toolkits like easygui pythoncard. The main reason I
> discount both of those is that they are effectively dead as I can see. Last
> updates in the 2010/2011 range. Has there been some toolkit to replace them?
> And no, the existing wxpython/gtk/qt/... toolkits really aren't acceptable.
> I need to get something done in 12 hours and I don't have time to climb the
> learning curve.
...
>
> The CLI version works. Simple UI, does what I need for part of the job. Now
> I need to add a relatively simple GUI. The user interface will consist of a
> series of tabs across the top, one for each subsystem and the main panel
> beneath that will contain the UI for the tab related task. I could fake the
> tabs by using a horizontal list of radio buttons which have the same
> semantics as tabs but a very different look.
>
...
>
> suggestions?
>
> I appreciate whatever help you can give.
> --
> http://mail.python.org/mailman/listinfo/python-list

Hi,
I usually use wxpython for my GUI-needs, but given the considerations
you mention, I'd check, whether the builtin tkinter and ttk might be
appropriate for this task.
I would somehow expect the least portability problems with this gui toolkit.
There is a Notebook widget in ttk:
http://docs.python.org/3.3/library/tkinter.ttk.html#tkinter.ttk.Notebook
or
http://docs.python.org/2/library/ttk.html#ttk.Notebook
for python 2.7

tkinter/ttk can be quite capable and (with some care) nice-looking too;
see, e.g.:

http://code.google.com/p/python-ttk/wiki/Screenshots

hth,
  vbr

Back to comp.lang.python | Previous | Next | Find similar | Unroll thread


Thread

Re: simple GUI environment Vlastimil Brom <vlastimil.brom@gmail.com> - 2013-03-05 16:45 +0100

csiph-web