Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #7834 > unrolled thread
| Started by | Greg Ewing <greg.ewing@canterbury.ac.nz> |
|---|---|
| First post | 2011-06-17 15:18 +1200 |
| Last post | 2011-06-18 17:49 +1200 |
| Articles | 8 — 6 participants |
Back to article view | Back to comp.lang.python
ANN: PyGUI 2.5 Greg Ewing <greg.ewing@canterbury.ac.nz> - 2011-06-17 15:18 +1200
Re: ANN: PyGUI 2.5 Terry Reedy <tjreedy@udel.edu> - 2011-06-17 15:15 -0400
Re: ANN: PyGUI 2.5 rzed <rzantow@gmail.com> - 2011-06-18 00:06 +0000
Re: ANN: PyGUI 2.5 Gregory Ewing <greg.ewing@canterbury.ac.nz> - 2011-06-18 17:58 +1200
Re: ANN: PyGUI 2.5 Bill Janssen <janssen@parc.com> - 2011-09-14 11:47 -0700
Re: ANN: PyGUI 2.5 Greg Ewing <greg.ewing@canterbury.ac.nz> - 2011-09-15 16:28 +1200
Re: ANN: PyGUI 2.5 Wolfgang Keller <feliphil@gmx.net> - 2011-06-17 21:24 +0200
Re: ANN: PyGUI 2.5 Gregory Ewing <greg.ewing@canterbury.ac.nz> - 2011-06-18 17:49 +1200
| From | Greg Ewing <greg.ewing@canterbury.ac.nz> |
|---|---|
| Date | 2011-06-17 15:18 +1200 |
| Subject | ANN: PyGUI 2.5 |
| Message-ID | <mailman.80.1308330149.1164.python-announce-list@python.org> |
PyGUI 2.5 is available: http://www.cosc.canterbury.ac.nz/greg.ewing/python_gui/ Lots of new stuff in this version. Highlights include: - Improved facilities for customising the standard menus. - Functions for creating PyGUI Images from PIL images and numpy arrays. - ListButton - a pop-up or pull-down menu of choices. - GridView - a user-defined view consisting of a regular grid of cells. - PaletteView - a GridView specialised for implementing tool palettes. There is also a big pile of other improvements and bug fixes. See the CHANGES file for full details. What is PyGUI? -------------- PyGUI is a cross-platform GUI toolkit designed to be lightweight and have a highly Pythonic API. -- Gregory Ewing greg.ewing@canterbury.ac.nz http://www.cosc.canterbury.ac.nz/greg.ewing/
[toc] | [next] | [standalone]
| From | Terry Reedy <tjreedy@udel.edu> |
|---|---|
| Date | 2011-06-17 15:15 -0400 |
| Message-ID | <mailman.88.1308338170.1164.python-list@python.org> |
| In reply to | #7834 |
On 6/16/2011 11:18 PM, Greg Ewing wrote: > PyGUI 2.5 is available: > > http://www.cosc.canterbury.ac.nz/greg.ewing/python_gui/ > > Lots of new stuff in this version. Highlights include: Greg left out the most important to me: "Now works with Python 3 on MacOSX and Windows!" -- Terry Jan Reedy
[toc] | [prev] | [next] | [standalone]
| From | rzed <rzantow@gmail.com> |
|---|---|
| Date | 2011-06-18 00:06 +0000 |
| Message-ID | <Xns9F07CC8B61248rzantowgmailcom@74.209.131.13> |
| In reply to | #7848 |
Terry Reedy <tjreedy@udel.edu> wrote in
news:mailman.88.1308338170.1164.python-list@python.org:
> On 6/16/2011 11:18 PM, Greg Ewing wrote:
>> PyGUI 2.5 is available:
>>
>> http://www.cosc.canterbury.ac.nz/greg.ewing/python_gui/
>>
>> Lots of new stuff in this version. Highlights include:
>
> Greg left out the most important to me:
> "Now works with Python 3 on MacOSX and Windows!"
>
Apparently *only* Python 3 ?
C:\extracted\PyGUI-2.5>setup install
Traceback (most recent call last):
File "C:\extracted\PyGUI-2.5\setup.py", line 12, in <module>
from distutils_extensions import pygui_build_py
ImportError: No module named distutils_extensions
--
rzed
[toc] | [prev] | [next] | [standalone]
| From | Gregory Ewing <greg.ewing@canterbury.ac.nz> |
|---|---|
| Date | 2011-06-18 17:58 +1200 |
| Message-ID | <962t3eFgd1U1@mid.individual.net> |
| In reply to | #7848 |
Terry Reedy wrote: > Greg left out the most important to me: > "Now works with Python 3 on MacOSX and Windows!" I'm not making too much of that at the moment, because it *doesn't* work on Linux yet, and I've no idea how long it will be before it does. The issue is that there will apparently not be any Python 3 version of pygtk, on the grounds that gobject introspection can be used instead. Unfortunately, Gtk 3 and related libraries don't quite handle gobject introspection well enough to support PyGUI at the moment. -- Greg
[toc] | [prev] | [next] | [standalone]
| From | Bill Janssen <janssen@parc.com> |
|---|---|
| Date | 2011-09-14 11:47 -0700 |
| Message-ID | <mailman.1125.1316026212.27778.python-list@python.org> |
| In reply to | #7890 |
Gregory Ewing <greg.ewing@canterbury.ac.nz> wrote: > Terry Reedy wrote: > > > Greg left out the most important to me: > > "Now works with Python 3 on MacOSX and Windows!" > > I'm not making too much of that at the moment, because it > *doesn't* work on Linux yet, and I've no idea how long > it will be before it does. > > The issue is that there will apparently not be any > Python 3 version of pygtk, on the grounds that gobject > introspection can be used instead. Unfortunately, > Gtk 3 and related libraries don't quite handle gobject > introspection well enough to support PyGUI at the moment. One possibility would be to develop a PyGUI branch on top of Tk, so that it would work with Python anywhere. Bill
[toc] | [prev] | [next] | [standalone]
| From | Greg Ewing <greg.ewing@canterbury.ac.nz> |
|---|---|
| Date | 2011-09-15 16:28 +1200 |
| Message-ID | <mailman.1142.1316060935.27778.python-list@python.org> |
| In reply to | #7890 |
On 15/09/11 06:47, Bill Janssen wrote: > One possibility would be to develop a PyGUI branch on top of Tk, so that > it would work with Python anywhere. Unfortunately, I doubt whether Tk would be up to the task of supporting PyGUI efficiently. The philosophies of model-view separation and allowing more than one view of a model are at odds with the way Tk works. Anyone who wants to have a go at it is welcome to try, though. -- Greg
[toc] | [prev] | [next] | [standalone]
| From | Wolfgang Keller <feliphil@gmx.net> |
|---|---|
| Date | 2011-06-17 21:24 +0200 |
| Message-ID | <20110617212416.0edfcd7b.feliphil@gmx.net> |
| In reply to | #7834 |
> Lots of new stuff in this version. Highlights include: > - GridView - a user-defined view consisting of a regular grid of > cells. > > - PaletteView - a GridView specialised for implementing tool > palettes. Any chance to see a hierarchical multi-column TreeListView anytime soon? Sincerely, Wolfgang -- Führungskräfte leisten keine Arbeit (D'Alembert)
[toc] | [prev] | [next] | [standalone]
| From | Gregory Ewing <greg.ewing@canterbury.ac.nz> |
|---|---|
| Date | 2011-06-18 17:49 +1200 |
| Message-ID | <962sj6Fbn8U1@mid.individual.net> |
| In reply to | #7850 |
Wolfgang Keller wrote: > Any chance to see a hierarchical multi-column TreeListView anytime soon? There may be a table view, but I can't promise anything about a tree view, sorry. -- Greg
[toc] | [prev] | [standalone]
Back to top | Article view | comp.lang.python
csiph-web