Re: Switching windows in PyQT

2008-12-05 Thread ShanMayne
On Dec 3, 8:12 pm, Дамјан Георгиевски [EMAIL PROTECTED] wrote: I am new to PyQT and GUI programming in general. What tutorials I have found are relatively clear on standard operations within a single window (QtGui.QWidget or QtGui.QMainWindow). Exiting this window exits the overall

Switching windows in PyQT

2008-12-03 Thread ShanMayne
Greetings All I am new to PyQT and GUI programming in general. What tutorials I have found are relatively clear on standard operations within a single window (QtGui.QWidget or QtGui.QMainWindow). Exiting this window exits the overall application. How would I switch between windows, that is close

Numpy record array - field names for all dimensions

2008-12-03 Thread ShanMayne
Greetings All I am seeking to represent datasets where each data element is the calculated result from several (4 for now) other data types. A matrix- like (in the general mathematical sense) seems logical, where the intersection of each of the 4 values (from different data sets) holds the value

Re: How to get an object's name as a string?

2008-10-29 Thread ShanMayne
The simplest and best option here is to store the objects in a dictionary with their keys being the generated names. Thanks. Indeed Alex, that may well be the simplest way, to have an overarching Dictionary of references/names and objects. However this does not help me to use the

Re: How to get an object's name as a string?

2008-10-29 Thread ShanMayne
Indeed they do. My delighted thanks. You have most precisely addressed the problem I intended to convey. I should have given the case of module attributes a moments further thought, an obvious answer. The locals() was unknown to me (rookie gaps). Thank you for the elaborated illustration. good