From shamrin at gmail.com Fri Mar 1 15:16:31 2013 From: shamrin at gmail.com (Alexey Shamrin) Date: Fri, 1 Mar 2013 18:16:31 +0400 Subject: [Pygui] Typo in documentation Message-ID: Hello! There's a typo in documentation: menus = basic_menus(include = file_cmds + prefs_cmds) Should be: menus = basic_menus(include = file_cmds + pref_cmds) And `pref_cmds` should be also imported [1]: http://www.cosc.canterbury.ac.nz/greg.ewing/python_gui/version/Doc/customising-standard-menus.html From shamrin at gmail.com Mon Mar 25 16:30:38 2013 From: shamrin at gmail.com (Alexey Shamrin) Date: Mon, 25 Mar 2013 19:30:38 +0400 Subject: [Pygui] Application using PyGUI: XTF Surveyor Message-ID: Hello! I've written XTF Surveyor, a small PyGUI application for viewing and converting sub-bottom profiling data in "widely known in narrow circles" XTF [0] format: https://github.com/shamrin/pyxtf It's *mostly* portable, but currently only runs on Windows. Two small parts of it are Windows-specific: * function to replace Numeric.image_from_ndarray that doesn't work with RGB data where width (in bytes) is not a multiple of 4. [1] * request_old_directory replacement to add BIF_NEWDIALOGSTYLE flag for nicer dialog [2] I think the latter is easy to incorporate to PyGUI. But the former is not, because my replacement works only for grey images (where R=G=B) and also wasting memory a little bit. Are there people using PyGUI? :) Alexey [0]: http://en.wikipedia.org/wiki/EXtended_Triton_Format [1]: https://github.com/shamrin/pyxtf/blob/master/xtfgui.py#L121-L141 [2]: https://github.com/shamrin/pyxtf/blob/master/xtfgui.py#L350-L382