[PyKDE] QWidgetFactory.create installEventFilter

2003-08-22 Thread Andrew Smart
Hi, I'm using pyqt 3.7 with Qt 3.1.2. I try to create dynamically a Dialog out of a ui file and install an eventHandler afterwards. class EventMgr(QObject): def __init__(self): pass def eventFilter(self, object, event): if (event.type() == QEvent.Close):

Re: [PyKDE] QWidgetFactory.create installEventFilter

2003-08-22 Thread Phil Thompson
On Friday 22 August 2003 10:22 am, Andrew Smart wrote: Hi, I'm using pyqt 3.7 with Qt 3.1.2. I try to create dynamically a Dialog out of a ui file and install an eventHandler afterwards. class EventMgr(QObject): def __init__(self): pass def eventFilter(self, object,

RE: [PyKDE] QWidgetFactory.create installEventFilter

2003-08-22 Thread Andrew Smart
Phil Thompson wrote: On Friday 22 August 2003 10:22 am, Andrew Smart wrote: Hi, I'm using pyqt 3.7 with Qt 3.1.2. I try to create dynamically a Dialog out of a ui file and install an eventHandler afterwards. class EventMgr(QObject): def __init__(self): pass def