Re: [PyQt] qwidget launching problem

2012-05-06 Thread Enes Albay
On 05/06/2012 08:55 PM, Phil Thompson wrote: On Sun, 06 May 2012 20:25:15 +0300, Enes Albay wrote: Hi, If i implement my class like below: class MainWindow(QtGui.QMainWindow): def __init__(self): super(MainWindow, self).__init__() self.initUI() def i

Re: [PyQt] qwidget launching problem

2012-05-06 Thread Detlev Offenbach
Am Sonntag, 6. Mai 2012, 20:25:15 schrieb Enes Albay: > Hi, > > > If i implement my class like below: > > class MainWindow(QtGui.QMainWindow): > def __init__(self): > super(MainWindow, self).__init__() > self.initUI() > > def initUI(): > >

Re: [PyQt] qwidget launching problem

2012-05-06 Thread Phil Thompson
On Sun, 06 May 2012 20:25:15 +0300, Enes Albay wrote: > Hi, > > > If i implement my class like below: > > class MainWindow(QtGui.QMainWindow): > def __init__(self): > super(MainWindow, self).__init__() > self.initUI() > > def initUI(): > > ...

[PyQt] qwidget launching problem

2012-05-06 Thread Enes Albay
Hi, If i implement my class like below: class MainWindow(QtGui.QMainWindow): def __init__(self): super(MainWindow, self).__init__() self.initUI() def initUI(): self.showButton = QtGui.QPushButton(u"KlavyeyiGoster", self.mainWidget)