Diez B. Roggisch wrote:
> Looks (or better smells) like a design smell to me. In Qt,and especially
> PyQt, you rarely subclass widgets, as that makes you lose the
> possibility to use the fabulous designer. The only thing I subclass in
> PyQt are the designer-generetaed top-level-classes. Can be
gregarican schrieb:
> I have an application I'm writing using PyQt. I'm trying to create the
> various windows by subclassing Qt objects. I have a subclassed
> QMainWindow as the parent, and then a series of subclassed QWidgets as
> other child windows that get used. How can I pass variables back a
I have an application I'm writing using PyQt. I'm trying to create the
various windows by subclassing Qt objects. I have a subclassed
QMainWindow as the parent, and then a series of subclassed QWidgets as
other child windows that get used. How can I pass variables back and
forth between the parent